什么是绝对匹配?

在[非绝对匹配]模式下,搜索引擎是向上兼容的。例如:搜索[天河区]时,因为[天河区]隶属于[广州市],因此在[非绝对匹配]模式下,所有[广州市]的资料都将被搜索出来。但是在[绝对匹配]模式下,将只搜索出[天河区]的数据,即完全相等才出现在搜索结果中。

智能推广 ,提升曝光率第一选择

数据统计显示,98.6%的求职者习惯通过"职位搜索引擎"寻找企业。
我要推广
智能推荐
热门职位
你是不是想找

1) { for (var i = 0; i < arr.length - 1; i++) { if (i > 0) { newlist += ","; } newlist += arr[i]; } } console.log(newlist); return newlist; } $(function () { if ($.cookie("offersearchoptions") != null) { $(".search_more").show(); $(".search_job_expand a").find("bdo").html("收起条件"); $(".search_job_expand a").find("i").removeClass("arrow_bottom").addClass("arrow_top"); } $("#search_t1").hide(); $("#search_t2").show(); $("#search_t3").hide(); //调用说明:【参数1】:点击执行弹出选择职位,【参数2】:点确认后赋值的对象,【参数3】:为隐藏域的赋值的对象,【参数4】:为弹窗口ID不可重复,【参数5】:限止选择个数 // $("body").jobchoose("职位选择", "#job_choose", "#job_choose bdo", '#ctl00_ContentPlaceHolder1_job_choose_txt', "popid1", 3); $("body").jtypechoose("行业类别", "#jtype_choose", "#jtype_choose bdo", '#ctl00_ContentPlaceHolder1_jtype_choose_txt', "popid2", 1); // $("body").citychoose("地区选择", "#workplace_choose", "#workplace_choose bdo", '#ctl00_ContentPlaceHolder1_workplace_choose_txt', "popid3", 3); //筛选 $(".search_filer .p").hover(function () { if ($(this).find("div").length > 0) { $(this).find("div").slideDown(); } }, function () { if ($(this).find("div").length > 0) { $(this).find("div").slideUp(); } }); //$(".search_filer .p a").click(function () { // if (!$(this).parent().hasClass("p")) { // $(this).parents(".p").find("input").val($(this).attr("data")); // $(this).parents(".p").find(".sel bdo").html($(this).html()); // $(this).parent().hide(); // $(this).addClass("cf80").siblings().removeClass("cf80"); // } //}); //更多条件 $(".search_job_expand a").click(function () { if ($(this).find("i").hasClass("arrow_bottom")) { $(".search_more").slideDown(); $(this).find("bdo").html("收起条件"); $(this).find("i").removeClass("arrow_bottom").addClass("arrow_top"); $.cookie("offersearchoptions", "true"); } else { $(".search_more").slideUp(); $(this).find("bdo").html("更多条件"); $(this).find("i").removeClass("arrow_top").addClass("arrow_bottom"); $.cookie("offersearchoptions", null); } }); //选择条件 $(".search_more .p a").click(function () { //if ($(this).hasClass("crently")) { // $(this).removeClass("crently").parents(".p").find(".first").eq(0).addClass("crently");; // $(".search_more .seleted .p a[type=" + $(this).attr("type") + "]").remove(); // if ($(".search_more .seleted .p a").length == 0) { // $(".search_more .seleted").hide(); // } //} //else { // $(".search_more .seleted").show(); // if ($(this).removeClass("crently").parents(".p").find(".first").eq(0).hasClass("crently")) { // $(this).removeClass("crently").parents(".p").find(".first").eq(0).removeClass("crently"); // } // $(this).addClass("crently").siblings().removeClass("crently"); // if (!$(this).hasClass("first")) { // //除第一个选项才显示到已选择里面 // if ($(".search_more .seleted .p a[type=" + $(this).attr("type") + "]").length > 0) { // $(".search_more .seleted .p a[type=" + $(this).attr("type") + "]").remove(); // } // $(".search_more .seleted .p").append('' + $(this).text() + ''); // selectedbind(); // } // else { // //选择全部 // if ($(".search_more .seleted .p a[type=" + $(this).attr("type") + "]").length > 0) { // $(".search_more .seleted .p a[type=" + $(this).attr("type") + "]").remove(); // } // if ($(".search_more .seleted .p a").length == 0) { // $(".search_more .seleted").hide(); // } // } //} }); //切换显示 $(".show_type a").click(function () { if (!$(this).hasClass("crently")) { $(this).addClass("crently").siblings().removeClass("crently"); $(this).find(".stype2").length > 0 ? $(".search_rlist .detail").hide() : $(".search_rlist .detail").show(); } }); //职位申请 $(".capp_dialog").click(function () { var jid = $(this).parent().attr("jobsn"); $.post("/new_detail/ashx/personal_job_status.ashx", { "r": Math.random() }, function (data) { var obj = JSON.parse(data); if (obj.success == "Y") { layboxs("/dialog/company_app.aspx?id=" + jid); } else if (obj.success == "L") { layboxs("/dialog/company_app.aspx?id=" + jid); } else { if (obj.msg == "无简历") { layboxs("/dialog/wresume.aspx?id=" + jid); } else if (obj.msg == "无审核") { layboxs("/dialog/company_gettel_msg.aspx?stype=2"); } else if (obj.msg == "无显示") { layboxs("/dialog/company_gettel_msg.aspx?stype=1"); } } }); //layboxs("/dialog/company_app.aspx?id=" + jobsn ); }); //职位收藏 $(".ccollect_dialog").click(function () { var jobsn = $(this).parent().attr("jobsn"); layboxs("/dialog/company_collect.aspx?jobsn=" + jobsn); }); //全选 $("#selectall").change(function () { if ($(this).is(":checked")) $(".search_rlist .checkbox input").prop("checked", true); else $(".search_rlist .checkbox input").prop("checked", false); }); //批量收藏职位 $(".collect_all").click(function () { var idlist = getallid(); if (idlist == "") layboxs("/dialog/dialog_ok.aspx?txt=" + escape("请至少选择一个需要操作的职位!")); else layboxs("/dialog/company_collect_all.aspx?jobsn=" + idlist); }); //批量申请职位 $(".invite_all").click(function () { var idlist = getallid(); if (idlist == "") layboxs("/dialog/dialog_ok.aspx?txt=" + escape("请至少选择一个需要操作的职位!")); else layboxs("/dialog/company_app_all.aspx?id=" + idlist); }); //批量查看职位 $(".look_all").click(function () { var idlist = getallid(); if (idlist == "") layboxs("/dialog/dialog_ok.html?txt=" + escape("请至少选择一个需要操作的职位!")); else gourl("showjob.aspx?idx=" + idlist); }); }); var JobJS = new Selector("JobJS", 3, 1); JobJS.Init(); var CityJS = new Selector("CityJS", 1, 0); CityJS.Init(); reloadwork('ctl00_ContentPlaceHolder1_job_choose_txt','job_choose'); reloadcity('ctl00_ContentPlaceHolder1_workplace_choose_txt','workplace_choose');