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.com/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.com/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>
廣告