我希望当我点击按钮时,我可以得到具体的img src,并在div 类img-block
块中显示img src。
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来做测试,结果是什么都没有提醒。