jQuery insertAfter()メソッドで要素を移動する方法
環境
Google Chrome 105.0.5195.127
Windows 10 Home 64bit
jquery 3.6.1
構文
$('セレクターA’).insertAfter(“セレクターB");
insertAfterメソッドを使って要素Aを要素Bの後に移動します。
使用例
<!DOCTYPE html> <html> <head> <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.1/jquery.min.js"></script> <script> $(document).ready(function(){ $('#btnchk').click(function(){ $('#cityA').insertAfter("#cityB"); //cityBの後にcityA }); }); </script> </head> <body> <input type="button" id="btnchk" value="移動"> <p id="cityA">東京</p> <p id="cityB">大阪</p> <p id="cityC">福岡</p> </body> </html>
実行結果
「移動」ボタンを押すと、「東京」を「大阪」の後ろに移動します。