我试图通过首先删除然后src
用jQuery添加回它的属性来刷新图像,但是不幸的是,这会导致它崩溃并在我重置它之后再次上下移动它下面的元素,这很烦人。我怎样才能避免这种行为?
相关HTML:
<figure>
<figcaption>Result</figcaption>
<img title="Result" id="result" src="http://example.com/image.bmp">
</figure>
相关CSS:
.gallery figure {
display: inline-block;
margin: 0;
padding: 0;
}
.gallery img {
min-width: 160px;
width: 65%;
}
(该<figure>
元素包含在<section>
具有 class="gallery" 的元素中)