欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

在jquery中combobox多选的不兼容问题总结

程序员文章站 2022-06-29 11:14:12
最近在ie10中开发jquery,关于jquery中combobox多选不能兼容的问题,进行一些总结。 当给combobox设置属性“multiple:true&...

最近在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>


其实我还是蛮推荐第一种方法的,因为比较方便,我就是用的第一种方式。