问答详情
源自:9-10 访问父节点parentNode

innerHTML innerText nodeValue value这些什么用法有什么区别吗

这个问题在练习的时候一直是  有疑惑的???

提问者:tobeyous 2016-04-04 15:09

个回答

  • 饭团团团
    2016-04-04 17:26:50
    已采纳

    <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>

    看上面的代码