javascript中的innerHTML是什么意思,怎么个用法?

时间:2023-01-30 14:26:39
innerHTML在JS是双向功能:获取对象的内容  或  向对象插入内容;
如:<div id="aa">这是内容</div> ,
我们可以通过 document.getElementById('aa').innerHTML 来获取id为aa的对象的内嵌内容;
也可以对某对象插入内容,如 document.getElementById('abc').innerHTML='这是被插入的内容';
这样就能向id为abc的对象插入内容。
定义和用法innerHTML 属性用于设置或返回指定标签之间的 HTML 内容。语法    Object.innerHTML = "HTML";// 设置    var html = Object.innerHTML;// 获取例子 1获取段落p的 innerHTML(html内容)    <html>    <head>    <script type="text/javascript">    function getInnerHTML(){        alert(document.getElementById("test").innerHTML);    }    </script>    </head><body>    <p id="test"><font color="#000">嗨豆壳 www.hi-docs.com</font></p>    <input type="button" onclick="getInnerHTML()" value="点击" />    </body>    </html>例子 2设置段落p的 innerHTML(html内容)    <html>    <head>    <script type="text/javascript">    function setInnerHTML(){        document.getElementById("test").innerHTML = "<strong>设置标签的html内容</strong>";    }    </script>    </head><body>    <p id="test"><font color="#000">嗨豆壳 www.hi-docs.com</font></p>    <input type="button" onclick="setInnerHTML()" value="点击" />    </body>    </html>