fenkapian
2017-03-29 20:22:38
<script type="text/javascript"> ? ?window.onload(function () { ? ? ? ?document.createElement("input"); ? ?});</script>這段代碼怎么不能傳進(jìn)節(jié)點(diǎn)啊,不是應(yīng)該出現(xiàn)個(gè)輸入框嗎?
3 回答
已采納

俠客島的含笑
TA貢獻(xiàn)552條經(jīng)驗(yàn) 獲得超285個(gè)贊
?<HEAD>
? <script>
? ? var count = 0;
? ? ?function appendButton() {
? ? ? ?var obj = document.createElement("input");
? ? ? ?obj.setAttribute("type", "button");
? ? ? ?obj.setAttribute("value", ++count);
? ? ? ?document.body.appendChild(obj);
? ? ?}
? </script>
?</HEAD> <BODY>
? <input type="button" value="append button" onclick="appendButton()" />
? <hr />
?</BODY>
</HTML>
添加回答
舉報(bào)
0/150
提交
取消