0

可能重复:
style.display='none' 不适用于 chrome 中的选项标签,但它在 Firefox 中有效,有人知道为什么吗?或解决方法?

 @For Each myItem In Data
      @<option style="display: none; " value="@myItem.dataCode" child="@myItem.dataCodeChild" >
          @myItem.dataCode
      </option>                                
 Next myItem

所有选项标签仍然显示,但 IE 中的样式。元素仍然显示样式=“显示:无;”。但它适用于 Chrome。如何修复它以在 IE 中工作。?

4

2 回答 2

1

<option> 不正式支持 style="display: none" 属性

看到这个其他问题style.display='none' doesn't work on option tags in chrome, but it does in firefox

于 2012-10-18T09:26:06.890 回答
0

在此站点上解决您的问题:https ://stackoverflow.com/a/878331/1643075 和演示

于 2012-10-18T09:22:20.517 回答