jQuery选中select控件 无法设置selected的解决方法
时间:2021-02-09 14:34:37|栏目:jquery|点击: 次
解决办法:把选中option的语句放到setTimeout中,例:
setTimeout(function() {
var selSorts = $("select[id^='" + controls.selsort + "']");
$.each(selSorts, function(index, sort) {
var ope = $(sort).find("option[value='" + arrSort[index] + "']");
if (ope.length > 0)
ope[0].selected = true;
});
}, 1);
复制代码 代码如下:
setTimeout(function() {
var selSorts = $("select[id^='" + controls.selsort + "']");
$.each(selSorts, function(index, sort) {
var ope = $(sort).find("option[value='" + arrSort[index] + "']");
if (ope.length > 0)
ope[0].selected = true;
});
}, 1);
上一篇:基于jquery的无刷新分页技术
栏 目:jquery
本文标题:jQuery选中select控件 无法设置selected的解决方法
本文地址:http://www.codeinn.net/misctech/59944.html