码迷,mamicode.com
首页 > Web开发 > 详细

解决jquery-easyui1.3.3 combobox 多选模式不兼容IE8问题

时间:2014-08-29 12:44:17      阅读:250      评论:0      收藏:0      [点我收藏+]

标签: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

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!