如何选择除 div "hola" 和 childrens 之外的所有元素
<body>
<div id="hola">
<div>example</div>
<span>example</span>
</div>
<div>not selected</div>
<span>not selected</span>
</body>
$(document).ready(function() {
$(":not(#hola > *)").click(function(){
console.log("sdf");
});
});