在not()jquery中选择多个id

时间:2013-10-21 09:32:44

标签: jquery

我需要在jquery中将多个元素id放在not selector中。我该怎么做?下面是现在的代码

$('#submit_form :input').not('#contbutton').blur(function () {
//logic

});

但是现在我需要多个id,而不是像

$('#submit_form :input').not('#contbutton #fn #ln').blur(function () {
//logic

}); 有可能吗?

1 个答案:

答案 0 :(得分:2)

使用not

,内分隔选择器
 $('#submit_form :input').not('#contbutton,#fn,#ln').blur(function () {
     ....