zoukankan      html  css  js  c++  java
  • js中innerHTML与innerText的用法与区别

    js中innerHTML与innerText的用法与区别

    用法:

    <div id="test">
       <span style="color:red">test1</span> test2
    </div>

    在JS中可以使用:

    test.innerHTML:

      也就是从对象的起始位置到终止位置的全部内容,包括Html标签。

      上例中的test.innerHTML的值也就是“<span style="color:red">test1</span> test2 ”。

    test.innerText: 

      从起始位置到终止位置的内容, 但它去除Html标签 

      上例中的text.innerTest的值也就是“test1 test2”, 其中span标签去除了。

    test.outerHTML:

      除了包含innerHTML的全部内容外, 还包含对象标签本身。

      上例中的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内容</a>
    <a href="javascript:alert(test.innerText)">inerHTML内容</a>
    <a href="javascript:alert(test.outerHTML)">outerHTML内容</a>

    特别说明:

      innerHTML是符合W3C标准的属性,而innerText只适用于IE浏览器,因此,尽可能地去使用innerHTML,而少用innerText,如果要输出不含HTML标签的内容,可以使用innerHTML取得包含HTML标签的内容后,再用正则表达式去除HTML标签,下面是一个简单的符合W3C标准的示例:

    <a href="javascript:alert(document.getElementById('test').innerHTML.replace(/<.+?>/gim,''))">无HTML,符合W3C标准</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>百度 谷歌 必应</center>
    </html>
    

      

    --------------------- 本文来自 yttcjj 的CSDN 博客 ,全文地址请点击:https://blog.csdn.net/YTTCJJ/article/details/7288414?utm_source=copy 

  • 相关阅读:
    string与bytes相互转化
    python3之requests
    BeyondCompare3提示许可密钥过期完美解决方法
    windows环境下 curl 安装和使用
    Linux:PS命令详解与使用
    wireshark怎么抓包、wireshark抓包详细图文教程
    七层协议和四层协议
    linux中快速清空文件内容的几种方法
    python_02列表,字典,IO处理
    python_01
  • 原文地址:https://www.cnblogs.com/smuwgeg/p/9752169.html
Copyright © 2011-2022 走看看