标签:blog http io ar for art 问题 cti log
扩展Array的原型对象,加入indexOf方法
if(!Array.prototype.indexOf){
Array.prototype.indexOf = function(target){
for(var i=0,l=this.length;i<l;i++){
if(this[i] === target) return i;
}
return -1;
};
}
参考http://blog.csdn.net/a9529lty/article/details/9668071
解决jquery-easyui1.3.3 combobox 多选模式不兼容IE8问题
标签:blog http io ar for art 问题 cti log
原文地址:http://www.cnblogs.com/huige-you/p/3944602.html