$(document).ready(function() { $("#sjld").sjld("#shenfen", "#chengshi", "#quyu"); $(".select_box").click(function(event) { event.stoppropagation(); $(this).find(".option").toggle(); $(this).parent().siblings().find(".option").hide(); }); $(document).click(function(event) { var eo = $(event.target); if ($(".select_box").is(":visible") && eo.attr("class") != "option" && !eo.parent(".option").length) $('.option').hide(); }); $(".option li").each(function(index) { $(this).click(function() { var value = $(this).find('a').text(); $(this).find('a').parent().parent().siblings(".select_txt").text(value); $(this).addclass('caractive').siblings().removeclass('caractive'); }) }) //岗位 $('.show_button').each(function(index) { $(this).click(function() { $('.hidedeta:eq(' + index + ')').slidedown(500); $('.show_button:eq(' + index + ')').hide(); }) }) $('.hide_button ').each(function(index) { $(this).click(function() { $('.hidedeta:eq(' + index + ')').slideup(500); $('.show_button:eq(' + index + ')').show(); }) }) })