我有一个主图像的图库,当缩略图悬停在其上时会发生变化。然后我使用缩放插件作为主图像div。缩放插件仅获取文档加载时的第一个图像。我的代码有什么问题,当主图像div中有新图像时,图像会发生变化?
这是我的代码:
jQuery(document).ready(function(){
jQuery('.hikashop_main_image_div').zoom({
on:'grab',
magnify: 2,
});
});
jQuery('.hikashop_main_image_div').change(function(){
jQuery('.hikashop_main_image_div').zoom({
on:'grab',
magnify: 2,
});
});
答案 0 :(得分:0)
如果我没弄错,应该这样做。
jQuery('.hikashop_main_image_div').hover(function(){
jQuery(this).zoom({
on:'grab',
magnify: 2,
});
});