我正在寻找一种方法来隐藏默认情况下已经隐藏的切换 div。如果用户单击它之外,我想隐藏 div!
我试过这个:
<script>
$(document).ready(function(){
$("#tab").hide();
$("#open_tab").on("click",function(){
$("#tab").toggle();
$("*").on("mouseup",function(e){
var clicked=$(this).attr("id");
if(clicked !="tab"){
e.stopPropagation();
$("#tab").hide();
}
else {
e.stopPropagation();
}
});
});
}); </script>
但我不知道我的代码有什么问题。请问有人可以帮忙吗?