function getApplyNowByJobid(id){
jQuery.post("/index.php?option=com_jsjobs&task=jobapply.applyjob",{jobid : id} , function(data){
if(data){
var response = jQuery.parseJSON(data);
if (typeof response == 'object'){
if (response[0] === 'popup'){
// console.log(response[1]);
jQuery("div#jspopup_work_area").html(response[1]);
jQuery("div#js_jobs_main_popup_back").show();
jQuery("div#waiting-wrapper").hide();
jQuery("div#jspopup_title").html("现在申请");
jQuery("div#js_jobs_main_popup_area").slideDown('slow');
}else{
window.location = response[1];
}
}else{
if (response === false){
//the response was a string "false", parseJSON will convert it to boolean false
}else{
//the response was something else
}
}
}
});
jQuery("img#jspopup_image_close").click(function(e){
jQuery("div#js_jobs_main_popup_area").slideUp("slow");
setTimeout(function () {
jQuery("div#js_jobs_main_popup_back").hide();
jQuery("div#jspopup_work_area").html("");
}, 700);
});
}
关注官方微信公众号
随时了解bg大游官方,BG大游集团,bg电子游艺官网入口科技
最新动态
欢迎投递简历
投递邮箱 sales@china-yaguang.com
职位招聘
jQuery(document).ready(function(){
jQuery("div#refineSearch").css("right","-"+(jQuery("div#refineSearch a").width() + 25)+"px");
jQuery("div#refineSearch").css("opacity",1);
jQuery("div#refineSearch").hover(
function(){
jQuery(this).animate({right: "+="+(jQuery("div#refineSearch a").width() + 25)}, 1000);
},
function(){
jQuery(this).animate({right: "-="+(jQuery("div#refineSearch a").width() + 25)}, 1000);
}
);
});