日期:2014-05-16  浏览次数:20372 次

js设置select某个选项选中,在ie7下不显示
  原则上这俩句都可以,document.getElementById('subbid').options[j].selected=true;document.all.subbid.selectedIndex=j;

开始只用上面那句,结果在ie6下报js错误,无法设置selected 属性。未指明的错误。
在ie7下根本不起作用。
用下面那句,在ie7 和 ie6 下都不起作用,没有报错。

解决办法:
 
    setTimeout(function(){document.all.subbid.selectedIndex=j;},1);

问题解决,哦,真的很怪!