亲宝软件园·资讯

展开

jQuery选中select控件 无法设置selected的解决方法

人气:0
解决办法:把选中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);

加载全部内容

相关教程
猜你喜欢
用户评论