首页 > 语言 > JavaScript > 正文

在JavaScript中操作数组之map()方法的使用

2024-05-06 16:21:49
字体:
来源:转载
供稿:网友

这篇文章主要介绍了在JavaScript中操作数组之map()方法的使用,是JS入门学习中的基础知识,需要的朋友可以参考下

JavaScript 数组map()方法创建一个新的数组使用调用此数组中的每个元素上所提供的函数的结果。

语法

 

 
  1. array.map(callback[, thisObject]); 

下面是参数的详细信息:

callback : 从当前的元素函数产生新的数组的元素。

thisObject : 对象作为该执行回调时使用

返回值:

返回创建数组

兼容性:

这种方法是一个JavaScript扩展到ECMA-262标准;因此它可能不存在在标准的其他实现。为了使它工作,你需要添加下面的脚本代码在顶部:

 

 
  1. if (!Array.prototype.map) 
  2. Array.prototype.map = function(fun /*, thisp*/
  3. var len = this.length; 
  4. if (typeof fun != "function"
  5. throw new TypeError(); 
  6.  
  7. var res = new Array(len); 
  8. var thisp = arguments[1]; 
  9. for (var i = 0; i < len; i++) 
  10. if (i in this
  11. res[i] = fun.call(thisp, this[i], i, this); 
  12.  
  13. return res; 
  14. }; 

例子:

 

 
  1. <html> 
  2. <head> 
  3. <title>JavaScript Array map Method</title> 
  4. </head> 
  5. <body> 
  6. <script type="text/javascript"
  7. if (!Array.prototype.map) 
  8. Array.prototype.map = function(fun /*, thisp*/
  9. var len = this.length; 
  10. if (typeof fun != "function"
  11. throw new TypeError(); 
  12.  
  13. var res = new Array(len); 
  14. var thisp = arguments[1]; 
  15. for (var i = 0; i < len; i++) 
  16. if (i in this
  17. res[i] = fun.call(thisp, this[i], i, this); 
  18.  
  19. return res; 
  20. }; 
  21.  
  22. var numbers = [1, 4, 9]; 
  23. var roots = numbers.map(Math.sqrt); 
  24.  
  25. document.write("roots is : " + roots );  
  26.  
  27. </script> 
  28. </body> 
  29. </html> 

这将产生以下结果:

 

 
  1. roots is : 1,2,3  

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表

图片精选