如何選擇,除了格 「HOLA」 的所有元素和兒童選擇所有的div - DIV你好,孩子的jQuery
<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");
});
});
對不起,但我真的不明白你的問題。 – sinaneker
如何選擇除了div「hola」和兒童的所有元素 –
非常感謝@ raina77ow –