jQuery 元素添加实例


要添加 jQuery 中的元素,让我们看两个方法:jQuery after() 方法

jQuery 中的 after() 方法用于在所选元素后面插入指定的内容。

示例

现在让我们看一个示例来实现 jQuery after() 方法 −

<!DOCTYPE html>
<html>
<head>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
<script>
   $(document).ready(function(){
      $("#btndemo").click(function(){
         $("img").after("<strong>Text inserted after!</strong>");
      });
   });
</script>
</head>
<body>
<img src="https://tutorialspoint.com/images/tp-logo-diamond.png" alt="Tutorialspoint Logo" width="220" height="120"><br><br>
<button id="btndemo">Insert specified content</button>
</body>
</html>

输出

此示例将产生以下输出 −

单击上述按钮显示文本 −

jQuery before() 方法

jQuery 中的 before() 方法用于在所选元素之前插入指定的内容。

现在让我们看一个示例来在 jQuery 中实现 before() 方法 −

<!DOCTYPE html>
<html>
<head>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
<script>
   $(document).ready(function(){
      $("#btndemo").click(function(){
         $("img").before("<strong>Text inserted before!</strong>");
      });
   });
</script>
</head>
<body>
<img src="https://tutorialspoint.com/images/tp-logo-diamond.png" alt="Tutorialspoint Logo" width="220" height="120"><br><br>
<button id="btndemo">Insert specified content</button>
</body>
</html>

输出

此示例将产生以下输出 −

单击“插入指定内容” −

更新日期: 2019-11-11

69 次浏览

开启你的职业生涯

完成课程获得认证

开始
广告