「jQuery」insertAfterで指定要素の後ろに要素を移動する
環境
jQuery 3.6.0
Google Chrome 99.0.4844.51
書式
$(セレクタA).insertAfter(セレクタC);
insertAfterを使用して要素セレクタAをセレクタCの後ろに移動します。
使用例
<!DOCTYPE html> <html> <head> <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js"></script> <script> $(function(){ $('#btnMv').click(function(){ $('#pA').insertAfter("#pC"); //pCの後にpA }); }); </script> </head> <body> <input type="button" id="btnMv" value="移動"> <p id="pA">東京</p> <p id="pB">大阪</p> <p id="pC">福岡</p> </body> </html>
結果
「移動」ボタンを押すと、要素「東京」が移動します。