我有一个带有一些值的选择框。单击按钮后,我想删除所选属性以获取具有此属性的任何选项值。基本上我想重新加载选择框。我不使用jquery所以在纯javscript中是否有任何方法可以完成它?
我在一篇不同的帖子中问过它,因为所有与帖子有关的答案都在Jquery中,我想只在javascript中进行。
我使用removeAttribute函数作为
document.getElementById('selectboxID').removeAttribute("selected")
但它不起作用。
答案 0 :(得分:2)
根据:http://www.w3schools.com/jsref/prop_select_selectedindex.asp
document.getElementById("selectboxID").selectedIndex = -1;
应该做的伎俩