我想选择“play”类的所有元素,并将它们添加到数组“esArreglo”中。
html文件:
<td id="b1" class></td>
<td id="b2" class></td>
<td id="b3" class="play"></td>
<td id="b4" class="play"></td>
代码:
$('td.play').each(function() {
notas.push(this.id)};
var esArreglo = notas.join(',');
我该如何解决这个问题? 感谢。
答案 0 :(得分:1)
您可以使用jQuery.map
var esArreglo = $('td.play').map(function() {
return this.id;
}).get().join(',');
答案 1 :(得分:0)
可能你错过了);
.each
$('td.play').each(function() {
notas.push(this.id)
});
var esArreglo = notas.join(',');