我如何在div之外检测并且javascript检测到它。
<script>
function detect(){
alert("Detect");
}
//How to detect click outside of div
</script>
<div id="detect" style="width:200px; height:200px; background-color:red;" onClick="detect()"></div>
答案 0 :(得分:-1)
您可以在脚本标记中使用jquery执行以下操作:
$(document).ready(function(){
$('body').click(function(e){
if($(e.target).is('#detect')){
return;
}
/// code goes here
});
});