這篇文章主要介紹了jQuery中remove()方法用法,以三個不同的實例形式分別演示了remove()方法刪除元素的使用技巧,具有一定的參考借鏡價值,需要的朋友可以參考下
本文實例講述了jQuery中remove()方法用法。分享給大家供大家參考。具體分析如下:
此方法將會從DOM中刪除所有符合的元素。
說明:remove()方法不會把符合的元素從jQuery物件中刪除,因而可以在將來再使用這些符合的元素,不過除了這個元素本身得以保留之外,其他的例如綁定的事件,附加的資料等都會被移除。
語法結構:
#程式碼如下:
#$(selector).remove(expr)
參數清單:
#實例程式碼:
實例一:
程式碼如下:
<!DOCTYPE html> <html> <head> <meta charset=" utf-8"> <meta name="author" content="http://www.jb51.net/" /> <title>remove() 函数 -脚本之家</title> <script type="text/ javascript " src="mytest/jQuery/jquery-1.8.3.js"></script> <script type="text/javascript"> $( document ).ready(function(){ $("button").click(function(){ $("p").remove("#first"); }) }) </script> </head> <body> <p id="first">我是第一</p> <p id="second">我是第二</p> <button>点击</button> </body> </html>
以下程式碼能夠刪除p集合中id為first的p。
實例二:
程式碼如下:
<!DOCTYPE html> <html> <head> <meta charset=" utf-8"> <meta name="author" content="http://www.jb51.net/" /> <title>remove()函数-脚本之家</title> <script type="text/javascript" src="mytest/jQuery/jquery-1.8.3.js"></script> <script type="text/javascript"> $(document).ready(function(){ $("#btd").click(function(){ $("p").remove(); }) }) </script> </head> <body> <p id="first">我是第一</p> <p id="second">我是第二</p> <button id="btd">点击删除第一个p</button> </body> </html>
如果省略參數,那就是刪除所有符合的元素。
實例三:
程式碼如下:
<!DOCTYPE html> <html> <head> <meta charset=" utf-8"> <meta name="author" content="http://www.jb51.net/" /> <title>remove()函数-脚本之家</title> <style type="text/css"> p{ width:200px; height:200px; border:5px solid green; } </style> <script type="text/javascript" src="mytest/jQuery/jquery-1.8.3.js"></script> <script type="text/javascript"> $(document).ready(function(){ $("#btd").click(function(){ var a=$("p"); a.remove("#first"); $("#btn").click(function(){ alert(a.length); }) }) }) </script> </head> <body> <p id="first">我是第一</p> <p id="second">我是第二</p> <button id="btd">删除第一个p</button><button id="btn">查看删除操作后p的数量</button> </body> </html>
remove()已經將DOM中的符合元素刪除,但是並沒有將它從jquery物件中刪除。
以上是jQuery中remove()方法用法實例分析的詳細內容。更多資訊請關注PHP中文網其他相關文章!