0
在網頁中有很多元素:<label name="delQ" style="cursor:pointer">Remove</label>
;元素是動態創建的。如何確定當前網頁中存在多少「delQ」?如何知道JQuery中當前網頁中有多少種特定的元素?
$('[name="delQ"]').live('click', function() {
//Get the number of name="delQ" in the current web page.
});
如何在JQuery中做到這一點?
長度不是函數。 jQuery也定義了.size()方法。 – Rafael 2009-11-28 07:32:39
更正了錯字。 – rahul 2009-11-28 07:33:23