innerHTML innerText nodeValue value这些什么用法有什么区别吗
这个问题在练习的时候一直是 有疑惑的???
这个问题在练习的时候一直是 有疑惑的???
2016-04-04
<html>
<meta charset="utf-8">
<body>
<div id="div1">
啊啊啊啊
</div>
<br/>
<div id="div2">
啊啊啊啊
</div>
<br/>
<button onclick="test1()">innerHTML</button>
<br/><br/>
<button onclick="test2()">innerText</button>
</body>
<script>
var div1=document.getElementById('div1');
function test1() {div1.innerHTML="<a href='#123'>helloworld!</a>" ;}
function test2() {div2.innerText="<a href='#123'>helloworld!</a> ";}
</script>
</html>
看上面的代码
举报