我希望当我点击按钮,我可以得到具体的img src和显示img src在div类img块块。
HTML
<button class="button">Click</button> <div class="img1"> <img src="img.jpg" alt=""> </div> <div class="img-block"></div>
CSS
.img-block{ position: absolute; top:10%; right:10%; background-color: red; width: 500px; height: 500px; } .img1 img{ width: 200px; }
JS
$('.button').click(function(){ var images = $('.img1 img').attr(src); alert(images); });
但现在我面对的问题是获取img src。
所以我使用alert进行测试,结果是它没有警报。
我不知道我在哪里犯错,有谁能帮助我吗?
谢谢!!!!
解决方法
src应该在引号中:
$('.img1 img').attr('src');