- <div id="test">
- <span style="color:red">test1</span> test2
- </div>
- <div id="test">
- <span style="color:red">test1</span> test2
- </div>
<div id="test">
<span style="color:red">test1</span> test2
</div>
在JS中可以使用:
- test.innerHTML:
- test.innerHTML:
test.innerHTML:
也就是從對(duì)象的起始位置到終止位置的全部?jī)?nèi)容,包括Html標(biāo)簽。
上例中的test.innerHTML的值也就是“<span style="color:red">test1</span> test2 ”。
test.innerText:
從起始位置到終止位置的內(nèi)容, 但它去除Html標(biāo)簽
上例中的text.innerTest的值也就是“test1 test2”, 其中span標(biāo)簽去除了。
test.outerHTML:
除了包含innerHTML的全部?jī)?nèi)容外, 還包含對(duì)象標(biāo)簽本身。
上例中的text.outerHTML的值也就是<div id="test"><span style="color:red">test1</span> test2</div>
完整示例:
- <div id="test">
- <span style="color:red">test1</span> test2
- </div>
-
- <a href="javascript:alert(test.innerHTML)">innerHTML內(nèi)容</a>
- <a href="javascript:alert(test.innerText)">inerHTML內(nèi)容</a>
- <a href="javascript:alert(test.outerHTML)">outerHTML內(nèi)容</a>
- <div id="test">
- <span style="color:red">test1</span> test2
- </div>
- <a href="javascript:alert(test.innerHTML)">innerHTML內(nèi)容</a>
- <a href="javascript:alert(test.innerText)">inerHTML內(nèi)容</a>
- <a href="javascript:alert(test.outerHTML)">outerHTML內(nèi)容</a>
<div id="test">
<span style="color:red">test1</span> test2
</div>
<a href="javascript:alert(test.innerHTML)">innerHTML內(nèi)容</a>
<a href="javascript:alert(test.innerText)">inerHTML內(nèi)容</a>
<a href="javascript:alert(test.outerHTML)">outerHTML內(nèi)容</a>
特別說(shuō)明:
innerHTML是符合W3C標(biāo)準(zhǔn)的屬性,而innerText只適用于IE瀏覽器,因此,盡可能地去使用innerHTML,而少用innerText,如果要輸出不含HTML標(biāo)簽的內(nèi)容,可以使用innerHTML取得包含HTML標(biāo)簽的內(nèi)容后,再用正則表達(dá)式去除HTML標(biāo)簽,下面是一個(gè)簡(jiǎn)單的符合W3C標(biāo)準(zhǔn)的示例:
<a href="javascript:alert(document.getElementById('test').innerHTML.replace(/<.+?>/gim,''))">無(wú)HTML,符合W3C標(biāo)準(zhǔn)</a>
-------------------------------------------------------------------------------------------------------------------------------
- <html>
- <head></head>
- <frameset frameborder="yes" frameborder="1" rows="40%,*">
- <frame name="top" src="1.html">
- <frame name="bottom" src="2.html">
- </frameset>
- </html>
-
- <html>
- <head>
- <script language="javascript">
- function init()
- {
- var aaa = parent.window.frames[0].document.body.innerHTML;
- alert(aaa);
- }
- </script>
- </head>
- <body>
- <p align="center">nothing</p>
- <p align="center"><input type="button" onclick="init()"; value="click"></p>
- </body>
- </html>
-
- <html>
- <center>汽車 房產(chǎn) 女人</center>
- </html>