jQuery 中的 text( )方法函数

首页 / jQuery入门教程 / jQuery 中的 text( )方法函数

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.

祝学习愉快!(内容编辑有误?请选中要编辑内容 -> 右键 -> 修改 -> 提交!)

技术教程推荐

从0开始学游戏开发 -〔蔡能〕

如何设计一个秒杀系统 -〔许令波〕

Android开发高手课 -〔张绍文〕

网络编程实战 -〔盛延敏〕

Electron开发实战 -〔邓耀龙〕

架构实战案例解析 -〔王庆友〕

OAuth 2.0实战课 -〔王新栋〕

郭东白的架构课 -〔郭东白〕

超级访谈:对话毕玄 -〔毕玄〕

好记忆不如烂笔头。留下您的足迹吧 :)