我为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中可以正常使用。可能是什么原因?与selected
和select = "selected"
有关吗?否则我的代码看不到任何错误。
编辑
我的HTML标签有select = ""
答案 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>