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>
元素,可能会变得混乱。
添加回答
举报
0/150
提交
取消