为了账号安全,请及时绑定邮箱和手机立即绑定

style.display ='none'对chrome中的选项标签不起作用

style.display ='none'对chrome中的选项标签不起作用

慕村9548890 2019-08-19 17:18:20
style.display ='none'对chrome中的选项标签不起作用,但它在firefox中有效下面是一些演示问题的示例代码。如果我点击Firefox中的按钮,第一个选项消失。如果我点击chrome中的按钮,没有任何反应,或者更确切地说,如果我检查第一个选项,它确实具有属性“style ='display:none'”,但html页面上的选项本身并未隐藏。<form><select><option>1</option><option>2</option><option>3</option></select><input type="button" onclick="document.getElementsByTagName('option')[0].style.display='none'" value="hide option 1"></form>为什么这不适用于chrome?
查看完整描述

3 回答

?
SMILET

TA贡献1796条经验 获得超4个赞

你可能不得不删除<option>而不是“隐藏”它。如果它不适合您,请尝试禁用它。

document.getElementsByTagName('option')[0].disabled='disabled'

PS:您可能想重新考虑使用getElementsByTagName('option'),如果您有更多<select>元素,可能会变得混乱。


查看完整回答
反对 回复 2019-08-19
  • 3 回答
  • 0 关注
  • 1648 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信