我有几个带有唯一ID的div标签,在针对特定图像的点击事件后,我正在尝试刷新它。我怎样才能做到这一点?这是我到目前为止的代码:
HTML:
<div class="photo_gallery_container" <?php echo($div_id); ?>>
<table class="table table-bordered table-condensed">
<thead >
<tr style="background-color: #f5f5f5;">
<th colspan="2" style="text-align: right;"><span style="cursor:pointer" id="delimg_<?php echo($id); ?>" class="delimg"><span class="label label-important">Delete</span></span></th>
</tr>
</thead>
<tbody>
<tr>
<td>
<img src="<?php echo($url['url'])?>" style="height:120px;"/>
</td>
<td>
<a href="#" id="rotateimg_<?php echo($id); ?>" class="rotateimg">Rotate</a>
</td>
</tr>
</tbody>
</table>
</div>
我的旋转点击事件如下所示:
$('.rotateimg').click(function(e) {
e.preventDefault();
var id = $(this).attr('id').substr(10);
$.post("/functions/photo_functions.php", { f: 'rotate', imgid: id }, function(status){
if (status == 'true') {
// How can I reload the specific image after being rotated
}
});
});
答案 0 :(得分:2)
只需将查询字符串附加到img
的网址(例如?v=1
),这会欺骗浏览器认为它是新图片。
以下是一个示例(假设id
是页面上图片的ID):
$('#' + id).prop('src', function(i, v)
{
var separator = v.indexOf('?') == -1 ? '?' : '&';
return v + separator + 'v=' + ( new Date() ).getTime();
});
由于页面上显示的img
没有ID,您可以遍历DOM来查找它,如下所示:
$(this).parent().prev().find('> img')
答案 1 :(得分:0)
插件怎么样?
$.fn.refresh(function() {
return this.each(function() {
var $this = $(this);
var source = $this.data('orig-src');
var timestamp = (new Date()).getTime();
if (!source) {
$this.data('orig-src', $this.prop('src'));
source = $this.data('orig-src');
}
if (source.indexOf('?') != -1) {
$this.prop('src', source + '&t=' + timestamp)
} else {
$this.prop('src', source + '?t=' + timestamp)
}
});
});
现在您可以在<img />
标记上调用它:
$('img.foo').refresh();