「jQuery」.removeとcontainsで指定要素を削除するサンプル
環境
jQuery3.6.0
Google Chrome 98.0.4758.102
書式
//「福岡」を含む要素を削除
$(“div").remove(“:contains('福岡’)");
removeを使用して要素を削除します。
使用例
<!DOCTYPE html> <html> <head> <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js"></script> <script> $(function(){ $('#btnDel').click(function(){ //「福岡」を含む要素を削除 $("div").remove(":contains('福岡')"); }); }); </script> </head> <body> <p><input type="button" id="btnDel" value="削除"></p> <div id="tokyo">東京</div> <div id="oosaka">大阪</div> <div id="fukuoka">福岡</div> </body> </html>
結果
「削除」ボタンクリックで、「福岡」要素を削除します。