Javascript Array.indexOf()方法
JavaScript數組indexOf()方法返回在該給定元素可以數組中可以找到第一個索引,或如果它不存在返回-1。
語法
array.indexOf(searchElement[, fromIndex]);
下麵是參數的詳細信息:
-
searchElement : 元素來定位數組
-
fromIndex : 索引在其處開始搜索。默認為0,即整個數組將被搜索。如果該指數大於或等於數組的長度,則返回-1。
返回值:
返回找到的元素的索引
兼容性:
這種方法是一個JavaScript擴展到ECMA-262標準;因此它可能不存在在標準的其他實現。為了使它工作,你需要添加下麵的腳本的頂部代碼:
if (!Array.prototype.indexOf) { Array.prototype.indexOf = function(elt /*, from*/) { var len = this.length; var from = Number(arguments[1]) || 0; from = (from < 0) ? Math.ceil(from) : Math.floor(from); if (from < 0) from += len; for (; from < len; from++) { if (from in this && this[from] === elt) return from; } return -1; }; }
例子:
<html> <head> <title>JavaScript Array indexOf Method</title> </head> <body> <script type="text/javascript"> if (!Array.prototype.indexOf) { Array.prototype.indexOf = function(elt /*, from*/) { var len = this.length; var from = Number(arguments[1]) || 0; from = (from < 0) ? Math.ceil(from) : Math.floor(from); if (from < 0) from += len; for (; from < len; from++) { if (from in this && this[from] === elt) return from; } return -1; }; } var index = [12, 5, 8, 130, 44].indexOf(8); document.write("index is : " + index ); var index = [12, 5, 8, 130, 44].indexOf(13); document.write("<br />index is : " + index ); </script> </body> </html>
這將產生以下結果:
index is : 2 index is : -1