在jquery中combobox多选的不兼容问题总结
最近在ie10中开发jquery,关于jquery中combobox多选不能兼容的问题,进行一些总结。
当给combobox设置属性“multiple:true”时,ie10无法完成多选,其报错如下:
. 代码如下:
function _7e8(_7e9,_7ea){
var _7eb=$.data(_7e9,"combobox");
var opts=_7eb.options;
var _7ec=$(_7e9).combo("getvalues");
var _7ed=_7ec.indexof(_7ea+"");//10650行 这里报错
if(_7ed>=0){
_7ec.splice(_7ed,1);
_7e7(_7e9,_7ec);
也就是在f12中报不支持indexof方法,现在对这种问题有两种解决方案:
1.修改
将以上代码修改为
. 代码如下:
<strong>function _7e8(_7e9,_7ea){
var _7eb=$.data(_7e9,"combobox");
var opts=_7eb.options;
var _7ec=$(_7e9).combo("getvalues");
var _7ed = (function(arr,str){
str = str + "";
for(var i=0,l=arr.length;i<l;i++){
if(arr[i] == str) return i;
}
return -1;
})(_7ec,_7ea);
if(_7ed >= 0){//修改于 2013-6-25 19:04
_7ec.splice(_7ed,1);
_7e7(_7e9,_7ec);
}</strong>
2.加入indexof方法
. 代码如下:
<strong>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;
};
}</strong>
其实我还是蛮推荐第一种方法的,因为比较方便,我就是用的第一种方式。
下一篇: 微信小程序block的使用教程
推荐阅读
-
在jquery中combobox多选的不兼容问题总结
-
在python3中pyqt5和mayavi不兼容问题的解决方法
-
在python3中pyqt5和mayavi不兼容问题的解决方法
-
在jquery中combobox多选的不兼容问题总结
-
sliderToggle在写jquery的计时器setTimeouter中不生效_jquery
-
jquery分页插件jpaginate在IE中不兼容问题_jquery
-
jquery分页插件jpaginate在IE中不兼容问题_jquery
-
sliderToggle在写jquery的计时器setTimeouter中不生效_jquery
-
在jquery中combobox多选的不兼容问题总结_jquery
-
在jquery中combobox多选的不兼容问题总结_jquery