使用jQuery将Html元素转换为数组

时间:2012-12-22 16:45:07

标签: jquery html

我的数量不限

<div class="item-1">text</div>
<div class="item-2">text</div>
<div class="item-3">text</div>
<div class="item-4">text</div>
<div class="item-5">text</div>
...

我想搜索所有可用的div并将它们存储在带有jQuery的数组中。

1 个答案:

答案 0 :(得分:4)

您可以使用通配符,以selector开头。

arr = $('[class^=item-]');

<强> Live Demo

arr = $('[class^=item-]');

arr.each(function(){
    alert($(this).text());
});​