当用户单击页面中的任意位置而不是 div 时,我想隐藏 div。
<head>
<script type="text/javascript" src="jquery-1.8.3.js"></script>
<script type="text/javascript">
$(function () {
$(document).not('.me').click(function () {
$('.me').hide()
})
})
</script>
</head>
<body>
<div class="me" style="width:200px; height:200px; background:#F00">
test
</div>
</body>