我想要做的是选择文档上的所有输入按钮,除了那些驻留在特定 ID 下的按钮。
例子:
<body>
<input type="button">
<div id="something">
<input type="button">
</div>
<div id="something2">
<input type="button">
</div>
<input type="button">
<input type="button">
<input type="button">
</body>
例如,我想选择所有输入,除了那些位于“某物”下的<div>
输入id
。
我试过的:
1) $('input[type="button"]:not(:parent(#something))').addCSS();
2) $('input[type="button"] :not(#something input[type="button"])')
和其他类似的方法