JavaScript push_array 和 in_array
javascript 中 php 函数 push_array
和 in_array
的等价物是什么?
数组很简单(不是多维的)。
还没找到本土的东西。
What is the equivalents of php functions push_array
and in_array
in javascript?
Arrays are simple (not multidimensional).
Haven't found something native.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您正在寻找
push
方法< /a> 和indexOf
方法。请注意,IE 不支持
indexOf
,因此您需要自己实现它,如下所示:(从 MDC 复制)
You're looking for the
push
method and theindexOf
method.Note that
indexOf
is not supported by IE, so you'll need to implement it yourself, like this:(copied from MDC)
push_array
:这是 JavaScript 中 Array 对象原生的:
in_array
:这不是 JavaScript 中 Array 原生的,但某些浏览器支持 Array.indexOf,可以进行比较至-1。如果不支持,那么您需要迭代这些项目。
push_array
:This is native to the Array object in JavaScript:
in_array
:This is not native to the Array in JavaScript however some browsers have support for Array.indexOf which can be compared to -1. If that is not supported than you need to iterate over the items.
您必须使用 JavaScript 数组对象。然后你可以使用.push()。
对于查找:
如何检查 JavaScript 中的数组是否包含对象?
You have to be using the JavaScript Array object. Then you can use .push().
For find:
How do I check if an array includes an object in JavaScript?