如何在 jQuery 中刪除 DOM 元素?
empty( ) 方法從匹配元素的集合中移除所有子節點, 而 remove( expr ) 方法從 DOM 中移除所有匹配元素.
示例
可以嘗試執行以下程式碼, 以瞭解如何在 jQuery 中移除 DOM 元素
<html> <head> <title>jQuery Example</title> <script src = "https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script> <script> $(document).ready(function() { $("div").click(function () { $(this).remove( ); }); }); </script> <style> .div{ margin:10px;padding:12px; border:2px solid #666; width:60px;} </style> </head> <body> <p>Click on any square below:</p> <span id = "result"> </span> <div class = "div" style = "background-color:blue;"></div> <div class = "div" style = "background-color:green;"></div> <div class = "div" style = "background-color:red;"></div> </body> </html>
廣告