要素の順序を逆順にするには、.reverse()を使用します。
サンプルソース
例)ボタンを押すと、リストの並びを逆順にして出力する
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 |
<!DOCTYPE html> <html lang="ja"> <head> <meta charset="utf-8"> <title>サンプル</title> <script src="http://code.jquery.com/jquery-3.2.1.min.js"></script> <script> $(function(){ $('#btn1').click(function(){ //そのままの順序で出力する $('#ts1 li').each(function(i){ console.log($(this).text()); }); //逆順で出力する $($("#ts1 li").get().reverse()).each(function(){ console.log($(this).text()); }); }); }); </script> </head> <body> <input type="button" id="btn1" value="ボタン"> <ul id="ts1"> <li>AA</li> <li>BB</li> <li>CC</li> <li>DD</li> <li>EE</li> </ul> </body> </html> |
- (結果)
- AA BB CC DD EE EE DD CC BB BB