如何使用 jQuery 将元素插入 DOM?
在现有文档中插入一个或多个新的 DOM 元素时可能会出现一种情况。jQuery 提供了多种方法可在不同位置插入元素。
after( content ) 方法在每一个匹配的元素后插入内容,而 before( content ) 方法在每一个匹配的元素前插入内容。
在内容之后
after( content ) 方法在每一个匹配的元素后插入内容。
示例
您可以尝试运行以下代码,了解如何使用 after() 方法将元素插入 DOM
<html> <head> <title>jQuery after(content) 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).after('<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>
在内容之前
before( content ) 方法在每一个匹配的元素前插入内容。
示例
您可以尝试运行以下代码,了解如何使用 before() 方法将元素插入 DOM
<html> <head> <title>jQuery before(content) method</title> <script src = "https://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script> <script> $(document).ready(function() { $("div").click(function () { $(this).before('<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>
广告