标签: jquery dom
使用jquery,我如何遍历给定类中的所有元素?
答案 0 :(得分:3)
使用each方法。
$('.klass').each( function() { $(this)... // will be an instance of the element matching the class selector });
答案 1 :(得分:2)
如有疑问,请查看文档:{{3}}