2014-02-19 26 views

回答

0

使用這樣的:

$('[id^="rub_"]:not('[id^="rub_0"]') 

或者,像這樣:

$('[id^="rub_"]).filter(function(){ 
    return $(this).not('[id^="rub_0"]); 
}) 

more details on attribute selector

0

使用:

$('input[id^="rub_"]:not([id^="rub_0"]') 
相關問題