廢話不多說了,直接給大家貼js代碼了,具體代碼如下所示:
<!doctype html> <html> <head> <meta charset="UTF-8" /> <title>Document</title> <script type="text/javascript"> var i = 0; function addInput(){ var o = document.createElement('input'); o.type = 'button'; o.value = '按鈕'+ i++; if(o.attachEvent){ o.attachEvent('onclick',addInput) }else{ o.addEventListener('click',addInput) } document.body.appendChild(o); o = null; } </script> </head> <body onload="addInput()"> </body> </html>
以上所述是小編給大家介紹的動態創建按鈕的JavaScript代碼,希望對大家有所幫助。