jquery鼠标点击窗口或浮动层以外关闭层【阻止冒泡事件】
$(".up-list a.th1").click(function(){
$(this).next("ul#up-list-ul").show();
});
$(document).mousedown(function(e){
var _con = $("#up-list-ul");
if(!_con.is(e.target) && _con.has(e.target).length === 0){
$("#up-list-ul").hide();
}
})

浙公网安备 33010602011771号