javascript – 如何发送数组作为多个参数?

前端之家收集整理的这篇文章主要介绍了javascript – 如何发送数组作为多个参数?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
Javascript我有简单的 test code
function x(a,b) {
  alert(a);
  alert(b);
}

var c = [1,2];
x(c);

它将一个参数c发送给函数x()作为一个参数,分配给a和b保持undefined: – /

如何将数组作为多个参数发送到函数,而不是作为一个数组?

解决方法

退房 apply.

在你的情况下(因为你没有在函数中使用它),你可以简单地将窗口(或这个)作为“this”参数传递:

x.apply(this,[1,2]);

示例:http://jsfiddle.net/MXNbK/2/

关于传递null作为“this”参数的问题,请参阅关于“this”参数的链接文章中的MDN的评论

Note that this may not be the actual value seen by the method: if the method is a function in non-strict mode code,null and undefined will be replaced with the global object,and primitive values will be Boxed.

原文链接:https://www.f2er.com/js/150994.html

猜你在找的JavaScript相关文章