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.
いくつかの要素の横にある最も近いimgを見つけようとしています。この要素は、h1からdivまでの任意の要素にすることができます。このimgを見つけたら、これをdivに追加したいと思います。これは私にはうまくいきません:
img = $(this).parent().find('img').attr('scr'); $('#result').append('<img src="' + img + '" />');
なぜこれが機能しないのかわからない。
との組み合わせを使用しclosest()ます:has()。
closest()
:has()
var img = $(this).closest(':has(img)').find('img').attr('src'); $('<img/>',{src: img}).appendTo('#result');