使用 JavaScript 内爆数组?
我可以像在 PHP 中那样在 jQuery 中内爆数组吗?
Can I implode an array in jQuery like in PHP?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
我可以像在 PHP 中那样在 jQuery 中内爆数组吗?
Can I implode an array in jQuery like in PHP?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(7)
您可以使用纯 JavaScript 执行此操作,使用
Array.prototype.join
:You can do this in plain JavaScript, use
Array.prototype.join
:像这样:
Like This:
Array.join
就是您需要,但如果您愿意, phpjs.org 的友好人员已经创建了implode
为您服务。然后就是一些稍微偏离主题的咆哮。正如 @jon_darkstar alreadt 指出的那样,jQuery 是 JavaScript,反之亦然。您需要了解 JavaScript 才能理解如何使用 jQuery,但这肯定不会有什么坏处,一旦您开始欣赏可重用性或开始着眼于更大的前景,您绝对需要学习它。
Array.join
is what you need, but if you like, the friendly people at phpjs.org have createdimplode
for you.Then some slightly off topic ranting. As @jon_darkstar alreadt pointed out, jQuery is JavaScript and not vice versa. You don't need to know JavaScript to be able to understand how to use jQuery, but it certainly doesn't hurt and once you begin to appreciate reusability or start looking at the bigger picture you absolutely need to learn it.
为了将来参考,如果您想模仿 PHP 的
的行为implode()
当没有指定分隔符指定时(实际上只是将各个部分连接在一起),您需要将一个空字符串传递到 Javascript 的join()
否则默认使用逗号作为分隔符:For future reference, if you want to mimic the behaviour of PHP's
implode()
when no delimiter is specified (literally just join the pieces together), you need to pass an empty string into Javascript'sjoin()
otherwise it defaults to using commas as delimiters:使用 join() 方法通过连接数组中的所有元素来创建并返回一个新字符串。
工作示例
Use join() method creates and returns a new string by concatenating all of the elements in an array.
Working example
我们可以在 javascript 中创建 implode of 的替代方案:
We can create alternative of implode of in javascript:
array.join
无法识别“;”如何使用分隔符,但用逗号替换它。使用 jQuery,您可以使用 $.each 来内爆数组(请注意,output_saved_json 是数组,tmp 是将存储内爆数组的字符串):我已使用 substring 删除最后一个“;”没有必要在最后添加。
但如果你愿意,你可以使用
substring
类似的东西:我认为最后一个解决方案比第一个解决方案更慢,因为它需要每次检查索引是否与数组的长度不同 < code>$.each 没有结束。
array.join
was not recognizing ";" how a separator, but replacing it with comma. Using jQuery, you can use$.each
to implode an array (Note that output_saved_json is the array and tmp is the string that will store the imploded array):I have used substring to remove last ";" added at the final without necessity.
But if you prefer, you can use instead
substring
something like:I think this last solution is more slower than the 1st one because it needs to check if index is different than the lenght of array every time while
$.each
do not end.