无涯教程-文字()

75 阅读1分钟

text()方法获取所有匹配元素的组合文本内容。此方法适用于XML和XHTML文档。

text( ) - 语法

selector.text( ) 

text( ) - 示例

下面的示例将在第一段中找到文本,以删除html,然后将第二段的html设置为仅显示文本。

<html>
   <head>
      <title>The Selecter Example</title>
      <script type="text/javascript" 
         src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js">
      </script>
   
      <script type="text/javascript" language="javascript">
         $(document).ready(function() {
            var content=$("p#pid1").text();
            $("#pid2").html(content);
         });
      </script>
      
      <style>
         .red { color:red; }
         .green { color:green; }
      </style>
   </head>
   
   <body>
      <p class="green" id="pid1">This is <i>first paragraph</i>.</p>
      <p class="red" id="pid2">This is second paragraph.</p>
   </body>
</html>

这将产生以下输出-

This is first paragraph.

This is first paragraph.

参考链接

www.learnfk.com/jquery/attr…