0

一意の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

        }
    });

});            
4

2 に答える 2

2

imgのURLにクエリ文字列を追加するだけです(例?v=1)。これにより、ブラウザは新しい画像であると思い込ませます。

次に例を示します(idページ上の画像のIDであると想定しています)。

$('#' + id).prop('src', function(i, v)
{
    var separator = v.indexOf('?') == -1 ? '?' : '&';

    return v + separator + 'v=' + ( new Date() ).getTime();
});

ページ上にIDがないように見えるのでimg、次のようにDOMをトラバースして見つけることができます。

$(this).parent().prev().find('> img')
于 2012-07-10T00:23:08.990 に答える
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();
于 2012-07-10T00:30:44.543 に答える