jquery移除标签

编程知识 行业动态 更新时间:2024-06-13 00:21:04
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8"> 
<title>菜鸟教程(runoob)</title> 
<script src="https://cdn.staticfile/jquery/1.10.2/jquery.min.js">
</script>
<script>
$(document).ready(function(){
  $("a").click(function(){
    $('img').removeAttr('src');//移除img标签
	   $('p').remove();//移除p标签
  });
});
</script>
</head>
<body>
<img src='https://www.google/images/srpr/logo3w.png'>
	<img src='https://www.google/images/srpr/logo3w.png'>
<p>接着点我!</p>
	<p>接着点我!2</p>
	<p>接着点我!3</p>
	<a>测试</a>
</body>
</html>

更多推荐

jquery移除标签

本文发布于:2023-03-31 02:01:00,感谢您对本站的认可!
本文链接:https://www.elefans.com/category/jswz/5d15ae90817ac3c1d4798ab80e869b65.html
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。
本文标签:移除   标签   jquery

发布评论

评论列表 (有 0 条评论)
草根站长

>www.elefans.com

编程频道|电子爱好者 - 技术资讯及电子产品介绍!