「jQuery」.prevで指定要素の直前に兄弟要素を取得
環境
jQuery 3.6.0
書式
$(“セレクタ名").prev().css(“属性", “値");
.prev() を使用して指定した要素の直前にある兄弟要素を取得します。
使用例
<!DOCTYPE html> <html> <head> <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js"></script> <script> $(function(){ //ボタンを押すとid="tD"の直前にある要素の文字色を赤文字にする $('#btnShow').click(function(){ $("#tD").prev().css("color", "red"); }); }); </script> </head> <body> <ul> <li id="tA">東京</li> <li id="tB">大阪</li> <li id="tC">福岡</li> <li id="tD">川崎</li> </ul> <input type="button" id="btnShow" value="検証"> </body> </html>
結果
「検証」ボタンを押すと、「福岡」のみ赤文字になります。