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 相对容易地做到,但我的尝试到目前为止还没有奏效(我对 Jquery 有点陌生)。
任何人都可以帮助我吗?
谢谢!
尝试使用not()方法
not()
$('a').not('.someClass').click(function() { //your code here... });
注意:您也可以使用not 选择器直接进行过滤,这对性能更好。
$('a:not(.someClass)').click(function() { //your code here... });
您可以使用 jQuery:not选择器:
:not
$("a:not(.some-class)").on("click", function(){ });
或.not()功能
.not()
$("a").not(".some-class").on("click", function(){ });
$(function(){ $('a').not('.yourClassToIgnore').click(function() { //do somethng }); });
Jsfiddle 示例:http: //jsfiddle.net/S5XLv/2/