2010-08-12 76 views

回答

3

使用each方法。

$('.klass').each(function() { 
    $(this)... // will be an instance of the element matching the class selector 
}); 
相關問題