Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
以前のすべてのイメージ タグに CSS を適用したいと考えています。
$('#'+globe).prevAll().removeClass('t2').addClass('t1');
これは、 を含む以前のすべての要素に CSS を適用していますdiv。
div
img要素のみに制限するにはどうすればよいですか?
img
変化する
に
$('#'+globe).prevAll('img').removeClass('t2').addClass('t1');
また
$('img',$('#'+globe).prevAll()).removeClass('t2').addClass('t1');