2010-08-12 38 views

回答

3

使用each方法。

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