当前位置: 首页 > 文档资料 > jQuery 入门教程 >

text(val )

优质
小牛编辑
127浏览
2023-12-01

描述 (Description)

text( val )方法设置所有匹配元素的文本内容。 此方法类似于html(val),但是会转义所有HTML实体。

语法 (Syntax)

以下是使用此方法的简单语法 -

<i>selector</i>.text( val ) 

参数 (Parameters)

以下是此方法使用的所有参数的说明 -

  • val - 任何字符串

例子 (Example)

下面的示例将在第二个段落中设置第一段的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").html();
            $("#pid2").text(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>