gpt4 book ai didi

jQuery - :not()? 中的多个选择器

转载 作者:行者123 更新时间:2023-12-03 21:27:39 24 4
gpt4 key购买 nike

我似乎无法完成以下工作:

$('input:not([type=radio][type=checkbox])').live('click', function() {
alert("You haven't clicked a radio or checkbox!");
});

尝试了几种不同的语法,任何人都可以帮助我解决这个问题。

干杯
查理

最佳答案

您混淆了 multiple selectormultiple attribute selector 。你应该写:

$("input:not([type=radio], [type=checkbox])");

多属性选择器[type=radio][type=checkbox]匹配type属性等于两者的元素radio 复选框,这在这个宇宙中不可能发生。

关于jQuery - :not()? 中的多个选择器,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6166871/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com