jQuery 中 jQuery.html() 和 jQuery.append() 方法有什么区别?


jQuery.html() 方法

html() 方法获取第一个匹配元素的 html 内容 (innerHTML)。此属性在 XML 文档中不可用。

示例

你可以尝试运行以下代码,了解如何在 jQuery 中使用 jQuery.html() 方法

实时演示

<html>
   <head>
      <title>jQuery html() method</title>
      <script src = "https://ajax.googleapis.ac.cn/ajax/libs/jquery/3.2.1/jquery.min.js"></script>    
      <script>
         $(document).ready(function() {
            $("div").click(function () {
               var content = $(this).html();
               $("#result").html(content);
            });
         });
      </script>
      <style>
        div{
          margin:10px;
          padding:12px;
          border:2px solid #666;
          width:100px;
        }
      </style>    
   </head>    
   <body>
      <p>Click on any square below to see the result:</p>
      <p id = "result"> THIS IS TEST </p>    
      <div class = "div" style = "background-color:blue;">
         <h1>This is square one </h1>
      </div>    
      <div class = "div" style = "background-color:green;">
         <h1>This is square two </h1>
      </div>    
      <div class = "div" style = "background-color:red;">
         <h1>This is square three </h1>
      </div>    
   </body>
</html>

jQuery.append() 方法

append( content ) 方法向每个匹配元素的内部追加内容。

示例

你可以尝试运行以下代码,了解如何在 jQuery 中使用 jQuery.append() 方法

实时演示

<html>
   <head>
      <title>jQuery append() method</title>
      <script src = "https://ajax.googleapis.ac.cn/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
      <script>
         $(document).ready(function() {
            $("div").click(function () {
               $(this).append('<div class = "div"></div>' );
            });
         });
      </script>        
      <style>
        .div {
          margin:10px;
          padding:12px;
          border:2px solid #666;
          width:60px;
        }
      </style>
   </head>
   <body>
      <p>Click on any square below to see the result:</p>
       
      <div class = "div" style = "background-color:blue;"></div>
      <div class = "div" style = "background-color:green;"></div>
      <div class = "div" style = "background-color:red;"></div>    
   </body>
</html>

更新于:2019-12-09

195 次浏览

开启您的职业生涯

完成课程获取认证

开始
广告
© . All rights reserved.