HTML <选项>:选定的内容在Internet Explorer中不起作用

时间:2018-07-16 07:02:02

标签: html html5 xhtml html-select

我为Select标签使用以下HTML代码:

<select name="myList" id="myQues" defaultvalue="">

<option value="" selected="">Select Your Option</option>
<option value="BestFriendName">Your Best friends Name</option>
<option value="MothersName">Mothers Name</option>

</select>

问题是,它永远不会选择我标记为option的{​​{1}}。它显示您最好的朋友的名字选项为selected,而不是选择您的选项。在Chrome中可以正常使用。可能是什么原因?与selectedselect = "selected"有关吗?​​否则我的代码看不到任何错误。

编辑

我的HTML标签有select = ""

2 个答案:

答案 0 :(得分:0)

像这样尝试:

<select name="myList" id="myQues" defaultvalue="">

<option value="" selected>Select Your Option</option>
<option value="BestFriendName ">Your Best friends Name</option>
<option value="MothersName">Mothers Name</option>

</select>

答案 1 :(得分:-2)

添加selected属性(已在IE 11中测试):

<select name="myList" id="myQues" defaultvalue="">

<option value="" selected="" selected>Select Your Option</option>
<option value="BestFriendName">Your Best friends Name</option>
<option value="MothersName">Mothers Name</option>

</select>