有谁知道为什么IE8在这个功能上失败了?
function checkExist(arr, val) {
for(var i=0; i<arr.length; i++) {
if(arr[i] == val) <-- "Object doesn't support this property or method"
return true;
}
return false;
}
答案 0 :(得分:0)
您正在将不是数组的内容作为arr
参数传递。如果您将其作为第一行添加到函数中,请检查console.log(arr);
将显示的内容。