码迷,mamicode.com
首页 > 其他好文 > 详细

createTextNode() 方法和createTextNode()方法

时间:2017-07-31 15:56:17      阅读:130      评论:0      收藏:0      [点我收藏+]

标签:title   head   href   ref   node   on()   bsp   text   tno   

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>菜鸟教程(runoob.com)</title>
</head>
<body>

<p id="demo">单击按钮创建一个标题</p>
<button onclick="myFunction()">点我</button>
<script>
function myFunction(){
var h=document.createElement("H1");
var t=document.createTextNode("Hello World");
h.appendChild(t);
document.body.appendChild(h);
};

</script>

</body>
</html>

 

 

document.createElement()    创建元素节点

document.createAttribute()   创建一个属性节点

document.createTextNode() 创建文本节点

 

createTextNode() 方法和createTextNode()方法

标签:title   head   href   ref   node   on()   bsp   text   tno   

原文地址:http://www.cnblogs.com/hulaoxi/p/7263040.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!