当 IE 加载页面时,我试图通过 JavaScript 添加一个选项。我在谷歌搜索它,但仍然无法得到解决方案。
<html>
<script type="text/javascript">
function add(){
var c = document.getElementById("number");
var e = document.createElement("option");
e.setAttribute("value", "1");
e.appendChild(document.createTextNode("two");
c.appendChild(e);
}
</script>
<body onload="add()">
<form action="" method="post">
favirate city:
<select id="number">
<option value="0">one</option>
</select>
</form>
</body>
</html>