Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我们正在使用 jQuery jqtransform 插件来设置网站表单的样式。虽然我们不希望它改变一种形式。我将在所有表单上运行 jqtransform 的脚本修改为以下内容:
$('form:not(.classOfFormWeDon'tWantToChange)').jqTransform();
尽管如此,它仍然与在所有表单上运行它具有相同的效果。:not 选择器的使用方式有问题吗?谢谢
这应该有效。
$('form').not('.classOfFormWeDontWantToChange').jqTransform();
小提琴用于说明这种类型的语法。