标签:
if(!Array.prototype.indexOf){
Array.prototype.indexOf = function(obj){
for(var i=0;i<this.length;i++){
if(this[i] == obj){
return i;
}
return -1;
};
ie数组不支持indexOf 方法解决
原文地址:http://www.cnblogs.com/tongchuanxing/p/5640945.html