jquery使用remove()方法删除指定class子元素
程序员文章站
2022-08-03 12:45:58
本文实例讲述了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>
上一篇: 你晓得亲嘴的滋味吗?
下一篇: 桑葚泡酒的功效和作用有哪些
推荐阅读
-
jQuery使用hide方法隐藏页面上指定元素的方法教程
-
jquery使用hide方法隐藏指定id的元素
-
jQuery使用hide方法隐藏指定元素class样式用法实例教程
-
使用jquery判断一个元素是否含有一个指定的类(class)实例
-
jQuery使用addClass()方法给元素添加多个class样式
-
jQuery使用empty()方法删除元素及其所有子元素的方法教程
-
jquery使用remove()方法删除指定class子元素
-
jQuery使用removeClass方法删除元素指定Class的方法教程
-
jQuery使用toggleClass方法动态添加删除Class样式的方法教程
-
jQuery使用CSS()方法给指定元素同时设置多个样式