分享web开发知识

注册/登录|最近发布|今日推荐

主页 IT知识网页技术软件开发前端开发代码编程运营维护技术分享教程案例
当前位置:首页 > 网页技术

jQuery文档操作--empty()和remove()

发布时间:2023-09-06 02:24责任编辑:董明明关键词:jQuery

   empty()

概述

     删除匹配的元素集合中所有的子节点

<!DOCTYPE html><html> ???<head> ???????<meta charset="UTF-8"> ???????<title></title> ???????<script type="text/javascript" src="js/jquery-3.1.1.min.js" ></script> ???????<script> ???????????$(document).ready(function() { ???????????????//empty()删除匹配的元素集合中所有的子节点 ???????????????$("button").click(function() { ???????????????????$("div").empty(); ???????????????}); ???????????}); ???????</script> ???</head> ???<body> ???????<div style="background-color: #FF0000;width: 130px;height: 50px;"> ???????????<ol> ???????????????<li>第一段话</li> ???????????????<li>第二段话</li> ???????????</ol> ???????</div> ???????<button>点击</button> ???</body></html>

   remove([expr])

概述

     从DOM中删除所有匹配的元素。

     这个方法不会把匹配的元素从jQuery对象中删除,因而可以在将来再使用这些匹配的元素。但除了这个元素本身得以保留之外,其他的比如绑定的事件,附加的数据等都会被移除

参数

    expr  用于筛选元素的jQuery表达式

<!DOCTYPE html><html> ???<head> ???????<meta charset="UTF-8"> ???????<title></title> ???????<script type="text/javascript" src="js/jquery-3.1.1.min.js" ></script> ???????<script> ???????????$(document).ready(function() { ???????????????//remove()从DOM中删除所有匹配的元素 ???????????????$("button").click(function() { ???????????????????$("div").remove(); ???????????????}); ???????????}); ???????</script> ???</head> ???<body> ???????<div style="background-color: #FF0000;width: 130px;height: 50px;"> ???????????<ol> ???????????????<li>第一段话</li> ???????????????<li>第二段话</li> ???????????</ol> ???????</div> ???????<button>点击</button> ???</body></html>

jQuery文档操作--empty()和remove()

原文地址:https://www.cnblogs.com/fengfuwanliu/p/10056709.html

知识推荐

我的编程学习网——分享web前端后端开发技术知识。 垃圾信息处理邮箱 tousu563@163.com 网站地图
icp备案号 闽ICP备2023006418号-8 不良信息举报平台 互联网安全管理备案 Copyright 2023 www.wodecom.cn All Rights Reserved