0

我有两个 Jquery 函数,一个显示图像的缩放/细节,另外两个显示缩略图中的多个图像。它们都起作用,直到您交换图像,然后显示新图像但旧图像仍在缩放功能中。我想我还需要更新新的缩放功能,但我不知道该怎么做。你如何强制重新加载或刷新功能?

<script type="text/javascript">
    jQuery(document).ready(function($){
    $('#image').addimagezoom() 
        magnifiersize: [300,300] 
    });

    jQuery(document).ready(function($){
    $("li.tmb-all a").click(function() {
        var mainImage = $(this).attr("href"); //Find Image Name
        $("#image").attr('src', mainImage);
        return false;       
    });
    })

</script>

相关HTML:

<div id="main_image">
  <img alt="available in 10 colors" id="image" itemprop="image" src="/products/440/large/custom-woven-1.jpg" width="400" />
</div>
    </div>
      <!-- no need for thumnails unless there is more then one image -->
<ul id="product-thumbnails" class="thumbnails" data-hook>
  <li class="tmb-all" id="tmb-440"><a href="/spree/products/440/large/custom-woven-1.jpg"><img alt="Custom-woven-wristbands-1" src="/products/440/mini/custom-woven-1.jpg" /></a></li>
  <li class="tmb-all" id="tmb-442"><a href="/spree/products/442/large/custom-woven-2.jpg"><img alt="Custom-woven-wristbands-2" src="/products/442/mini/custom-woven-2.jpg" /></a></li>
  <li class="tmb-all" id="tmb-439"><a href="/spree/products/439/large/custom-woven-3.JPG"><img alt="Custom-woven-wristbands-3" src="/products/439/mini/custom-woven-3.JPG" /></a></li>
  <li class="tmb-all" id="tmb-441"><a href="/spree/products/441/large/custom-woven-4.jpg"><img alt="Custom-woven-wristbands-4" src="/products/441/mini/custom-woven-4.jpg" /></a></li>
</ul>

</div>
4

1 回答 1

0

您可以尝试在点击中添加放大代码:

$('#image').addimagezoom() 
    magnifiersize: [300,300] 
});


$("li.tmb-all a").click(function() {
    var mainImage = $(this).attr("href"); //Find Image Name
    $("#image").attr('src', mainImage);
    $('#image').addimagezoom() 
      magnifiersize: [300,300] 
    });
    return false;       
});

插件通常也有一种自我毁灭的方法,如果它这样做了,你也许可以做一些事情,比如$('#image').destroy().addimagezoom() magnifiersize: [300,300] }); 假设它实际上支持它(查看文档)。

于 2012-05-23T21:10:52.137 回答