$(function(){ //点击筛选和收起 $(".screening").click(function(){ $(".people-list").addClass("hidden"); $(".contented").removeClass("hidden"); }) $(".pack").click(function(){ $(".contented").addClass("hidden"); $(".people-list").removeClass("hidden"); }) // 点击选项则被选中,已选中变为取消 $(".choice .col-xs-3").click(function() { // 先判断是否已被选中 var hasclass = $(this).hasClass("active"); if(hasclass) { $(this).removeClass("active"); } else { $(this).addClass("active"); } }) // 判断经验的星星等级 $(".choice .experience i").click(function() { // 先清除所有星星 $(".choice .experience i").removeClass("blue-start").addClass('gray-start'); // 自己添加星星,且给自己之前的添加星星 $(this).removeClass('gray-start').addClass("blue-start").prevAll("i").removeClass('gray-start').addClass("blue-start"); }) // 点击选项则被选中,已选中变为取消 $(".choice .row div").click(function() { // 先判断是否已被选中 var hasclass = $(this).hasClass("active"); if(hasclass) { $(this).removeClass("active"); } else { $(this).addClass("active"); } }) // 判断经验的星星等级 $(".choice .experience i").click(function() { // 先清除所有星星 $(".choice .experience i").removeClass("blue-start").addClass('gray-start'); // 自己添加星星,且给自己之前的添加星星 $(this).removeClass('gray-start').addClass("blue-start").prevAll("i").removeClass('gray-start').addClass("blue-start"); }) //点击筛选和收起 $(".screening").click(function(){ $(".people-list").addClass("hidden"); $(".contented").removeClass("hidden"); }) $(".pack").click(function(){ $(".contented").addClass("hidden"); $(".people-list").removeClass("hidden"); }); $(".YD5-1 .personnel").click(function() { window.location.replace("5-2_YD_security_personnel_details.html"); }); $(".people-list .clear-scr-res").click(function() { $(".scrresult").fadeOut(200); $(".separator").fadeOut(200); }); // 4一键搜页面 // 按叉叉删除该列 $(".regionselect ul li .cha").click(function(){ $(this).parents("li").remove(); }); // 按删除历史,清空全部 $(".delhistory span").click(function() { $(".delhistory").remove(); $(".regionselect").remove(); }); // 4-1页面JS $(".YD4-1 .personnel").click(function(){ window.location.replace("4-1-1YD_security_personnel_details.html"); }); // 4-1-2页面JS $(".YD4-1-2 .container-fluid .on-sitewar").click(function(){ window.location.replace("4-2-1YD-task-details.html"); }); $(".YD4-3 .personnel").click(function(){ window.location.replace("4-3-1YD_security_company.html"); }); // 6-3页面 // 点击选项则被选中,已选中变为取消 $(".screening .scrcon .fixed span").click(function() { // 先判断是否已被选中 var hasclass = $(this).hasClass("select"); if(hasclass) { $(this).removeClass("select"); } else { $(this).addClass("select"); } }) // 6-1页面 // 点击选项则被选中,已选中变为取消 $(".choice .row div").click(function() { // 先判断是否已被选中 var hasclass = $(this).hasClass("active"); if(hasclass) { $(this).removeClass("active"); } else { $(this).addClass("active"); } }) //点击筛选和收起 $(".screening").click(function(){ $(".people-list").addClass("hidden"); $(".contented").removeClass("hidden"); }) $(".pack").click(function(){ $(".contented").addClass("hidden"); $(".people-list").removeClass("hidden"); }); // 点击跳转公司详情 $(".YD6-1 .personnel").click(function() { window.location.replace("6-2YD_security_company_details.html"); }); })