這篇文章主要介紹了jQuery中empty()方法用法,以實例形式分析了empty()方法的功能、定義及將匹配元素中的所有內容移除的使用技巧,需要的朋友可以參考下
本文實例講述了jQuery中empty()方法用法。分享給大家供大家參考。具體分析如下:
此方法能夠將匹配元素中的所有內容移除,包括所有文本和子節點。
語法結構:
代碼如下:
$(selector).empty()
實例代碼:
代碼如下:
<!DOCTYPE html>
<html>
<head>
<meta charset=" utf-8">
<meta name="author" content="http://www.jb51.net/" />
<title></title>
<style type="text/css">
div{
height:200px;
width:200px;
border:1px solid red
}
ul li{
border:1px solid blue;
height:100px;
width:100px;
}
</style>
<script type="text/javascript" src="mytest/jQuery/jquery-1.8.3.js"></script>
<script type="text/javascript">
$(document).ready(function(){
$("button").click(function(){
$("div").empty();
});
})
</script>
</head>
<body>
<div>
<ul>
<li></li>
</ul>
</div>
<button>點擊查看效果</button>
</body>
</html>
希望本文所述對大家的jQuery程序設計有所幫助。