Rumah > Artikel > hujung hadapan web > 怎样使用JS做出动态添加HTML标记
这次给大家带来怎样使用JS做出动态添加HTML标记,使用JS做出动态添加HTML标记的注意事项有哪些,下面就是实战案例,一起来看一下。
一 介绍
动态添加一个HTML标记可以使用createElement()
方法来实现。
CreateElement()
方法可以根据一个指定的类型来创建一个HTML标记。
语法:
sElement=<a href="http://www.php.cn/code/658.html" target="_blank">document</a>.createElement(sName)
sElement:用来接收该方法返回的一个对象。
sName:用来设置HTML标记的类型和基本属性。
二 应用
动态添加一个文本框
本示例通过单击“动态添加文本”按钮,将在页面中动态添加一个文本框。
三 代码
<html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=gb2312" /> <title>动态添加HTML标记</title> <script language="javascript"> <!-- function addText() { var txt=document.createElement("input"); txt.type="text"; txt.name="txt"; txt.value="动态添加的文本框"; document.fm1.appendChild(txt); } --> </script> </head> <body> <form name="fm1"> <input type="button" name="btn1" value="动态添加文本框" onclick="addText();" /> </form> </body> </html>
相信看了本文案例你已经掌握了方法,更多精彩请关注php中文网其它相关文章!
推荐阅读:
Atas ialah kandungan terperinci 怎样使用JS做出动态添加HTML标记. Untuk maklumat lanjut, sila ikut artikel berkaitan lain di laman web China PHP!