Home >Web Front-end >JS Tutorial >js implementation of clicking to add an input node_javascript skills

js implementation of clicking to add an input node_javascript skills

WBOY
WBOYOriginal
2016-05-16 16:28:481375browse

The code is too concise, so I won’t talk nonsense and just present it:

Copy code The code is as follows:

<script><br>            function text(){<br>           var obj=document.createElement("input");<br>               obj.value="1";<br>                document.body.appendChild(obj);<br>             }<br> </script>
add

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn