我有两个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>
答案 0 :(得分: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]
});
之类的事情,假设它实际上支持它(检查文档)。