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.
私のコードがそのようにレイアウトされている場合、
<div data-page-index="1" class="active"> <img src="foo.png" /> </div>
たとえば、div クラスしかない場合、画像パスに変数を設定するにはどうすればよいですか
var image1 = $('.active').find(img);
必要に応じてその画像を追加できますか?
srcこの場合は、画像の最初のインスタンスから属性を取得します。
src
var image1 = $(".active").children("img").eq(0).attr("src");
実施例