Posted in Javascript onSeptember 01, 2010
解决办法:把选中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);
jQuery选中select控件 无法设置selected的解决方法
声明:登载此文出于传递更多信息之目的,并不意味着赞同其观点或证实其描述。
Reply on: @reply_date@
@reply_contents@