在 JavaScript 中迭代数组
我有一个数组并填充了它的值,如下所示:
$('#list input:checked').each(function() {
deleteRecordIdsStr.push($(this).attr('name'));
});
我将其用于我的数组:
deleteRecordIdsStr = deleteRecordIdsStr.join("-");
所以我有一个这样的数组。让我们接受这样的事实:我一开始向它推送了 10、20、30,然后我加入了。
如何迭代该数组并再次获得 10、20 和 30?
I have an array and filled its values like that:
$('#list input:checked').each(function() {
deleteRecordIdsStr.push($(this).attr('name'));
});
I use that for my array:
deleteRecordIdsStr = deleteRecordIdsStr.join("-");
So I have an array like that. Let's accept that I pushed 10, 20, 30 to it at first and after that I made join.
How can I iterate over that array and get 10, 20 and 30 again?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
split 是创建数组的 String 方法。
迭代将是:
split is a String method that creates an array.
and the iteration will be:
“标准”方法是使用
for
循环:但是 jQuery 还为数组(和类似数组的对象)提供了
each
方法:The "standard" method is to use a
for
loop:But jQuery also provides an
each
method for arrays (and array-like objects):您可以使用 jQuery every 函数来轻松迭代它们。
http://api.jquery.com/jQuery.each/
You can use the jQuery each function to easy iterate through them.
http://api.jquery.com/jQuery.each/