动态创建按钮的JavaScript代码

废话不多说了,直接给大家贴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> </body> </html>

以上所述是小编给大家介绍的动态创建按钮的JavaScript代码,希望对大家有所帮助。

您可能感兴趣的文章:

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/wgwwsx.html