DIV CSS 佈局教程網

 DIV+CSS佈局教程網 >> 網頁腳本 >> JavaScript入門知識 >> JavaScript基礎知識 >> 在JavaScript中操作數組之map()方法的使用
在JavaScript中操作數組之map()方法的使用
編輯:JavaScript基礎知識     

 JavaScript 數組map()方法創建一個新的數組使用調用此數組中的每個元素上所提供的函數的結果。
語法

array.map(callback[, thisObject]);

下面是參數的詳細信息:

  •     callback : 從當前的元素函數產生新的數組的元素。
  •     thisObject : 對象作為該執行回調時使用

返回值:

返回創建數組
兼容性:

這種方法是一個JavaScript擴展到ECMA-262標准;因此它可能不存在在標准的其他實現。為了使它工作,你需要添加下面的腳本代碼在頂部:

if (!Array.prototype.map)
{
 Array.prototype.map = function(fun /*, thisp*/)
 {
  var len = this.length;
  if (typeof fun != "function")
   throw new TypeError();

  var res = new Array(len);
  var thisp = arguments[1];
  for (var i = 0; i < len; i++)
  {
   if (i in this)
    res[i] = fun.call(thisp, this[i], i, this);
  }

  return res;
 };
}

例子:

<html>
<head>
<title>JavaScript Array map Method</title>
</head>
<body>
<script type="text/javascript">
if (!Array.prototype.map)
{
 Array.prototype.map = function(fun /*, thisp*/)
 {
  var len = this.length;
  if (typeof fun != "function")
   throw new TypeError();

  var res = new Array(len);
  var thisp = arguments[1];
  for (var i = 0; i < len; i++)
  {
   if (i in this)
    res[i] = fun.call(thisp, this[i], i, this);
  }

  return res;
 };
}

var numbers = [1, 4, 9];
var roots = numbers.map(Math.sqrt);

document.write("roots is : " + roots ); 

</script>
</body>
</html>

這將產生以下結果:

roots is : 1,2,3 

XML學習教程| jQuery入門知識| AJAX入門| Dreamweaver教程| Fireworks入門知識| SEO技巧| SEO優化集錦|
Copyright © DIV+CSS佈局教程網 All Rights Reserved