不知道我是否错误地使用了非选择器,但我希望点击的所有内容都可以做除了非选择器中的 id 之外的事情。
这些都不起作用,单击徽标时我会收到警报:
$('body').not('#logo').click(function(){
alert('hi');
});
$('body:not(#logo)').click(function(){
alert('hi');
});
和html:
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>Untitled Document</title>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script>
<script type='text/javascript'>
$(document).ready(function(){
$('body').not('#logo').click(function(){
alert('hi');
});
});
</script>
</head>
<body>
<div style='width:900px; margin:0 auto; background-color:red; height:600px;'>
<div id='logo' style='background-color:black; width:200px; height:200px;'>
</div>
</div>
</body>
</html>