移除方法:1、利用“eq(-1)”選擇器和remove()方法,語法“$(Element).eq(-1).remove()”;2、利用“ :last」選擇器和remove()方法,語法「$(Element:last).remove()」。
本教學操作環境:windows7系統、jquery3.6.1版本、Dell G3電腦。
jquery從最後移除一個元素
#方法1:「eq(-1)」選擇器remove()方法
利用「eq(-1)」選擇器從最後選取最後一個元素
使用remove()方法刪除選取的元素
<!DOCTYPE html> <html> <head> <meta charset="utf-8" /> <script src="js/jquery-3.6.1.min.js"></script> <script type="text/javascript"> $(document).ready(function() { $("p").eq(-1).remove(); }); </script> </head> <body> <p>第一段</p> <p>第二段</p> <p>第三段</p> <p>第四段</p> <p>第五段</p> <p>第六段</p> </body> </html>
方法2:「:last」選擇器remove()方法
利用「:last」選擇器從最後選取最後一個元素
使用remove()方法刪除選取的元素
<!DOCTYPE html> <html> <head> <meta charset="utf-8" /> <script src="js/jquery-3.6.1.min.js"></script> <script type="text/javascript"> $(document).ready(function() { $("p:last").remove(); }); </script> </head> <body> <html> <body> <p>第一段</p> <p>第二段</p> <p>第三段</p> <p>第四段</p> <p>第五段</p> </body> </html> </body> </html>
相關教學推薦:jQuery影片教學
以上是jquery怎麼從最後移除一個元素的詳細內容。更多資訊請關注PHP中文網其他相關文章!