Heim > Fragen und Antworten > Hauptteil
習慣沉默2017-06-15 09:23:47
你应该类似这样
$(document).bind("click",function(e){
//通过e.target判断
}
e.target != “你点击需要显示的元素” 则执行hide()
迷茫2017-06-15 09:23:47
$("#a").on("click", function(e){
if($(".class").is(":hidden")){
$(".class").show();
}else{
$(".class").hide();
}
$(document).one("click", function(){
$(".class").hide();
});
e.stopPropagation();
});
$(".class").on("click", function(e){
e.stopPropagation();
});