欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

jquery使用remove()方法删除指定class子元素

程序员文章站 2022-04-11 18:55:25
本文实例讲述了jquery使用remove()方法删除指定class子元素的方法。分享给大家供大家参考。具体实现方法如下: ...

本文实例讲述了jquery使用remove()方法删除指定class子元素的方法。分享给大家供大家参考。具体实现方法如下:

<!doctype html>
<html>
<head>
<script src="js/jquery.min.js">
</script>
<script>
$(document).ready(function(){
 $("button").click(function(){
  $("p").remove(".italic");
 });
});
</script>
</head>
<body>
<p>this is a paragraph in the p.</p>
<p class="italic"><i>this is another paragraph in the p.</i></p>
<p class="italic"><i>this is another paragraph in the p.</i></p>
<button>remove all p elements with class="italic"</button>
</body>
</html>