首先写入function函数,以便调用
Array.prototype.indexValue = function (arr) {for (var i = 0; i < this.length; i++) {if (this[i] == arr) {return i;}}
下面是使用方法:
// 创建数组arrlet arr = [1, 2, 3, 4, 5];// 得到1在arr数组中的下标0arr.indexValue(1); // 0}