tobeyous
2016-04-04 15:09
这个问题在练习的时候一直是 有疑惑的???
<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>
看上面的代码
JavaScript进阶篇
468060 学习 · 21891 问题
相似问题