在Shopify jQuery中,单击和悬停事件不起作用

时间:2019-01-10 08:19:56

标签: jquery

当任何图像单击该图像时,我已经在图像垂直传送带上创建了click事件,该图像占据了正常工作的主图像的位置。 但是当我更改图像在轮播中的位置时,由于我测试了事件在该图像组中不起作用,因此单击事件在一组图像中停止工作。 链接:https://creative-demo.myshopify.com/products/bella-shalley-3

我曾尝试删除其他jQuery代码,并使用多个事件(如mousehover,mousein)调试该代码,但该组图像中没有任何事件

jQuery('。slider_img')。bind('click mouseover',function(e){

    jQuery(this).siblings('a.active').removeClass("active");
    jQuery(this).addClass("active");
    var img_src=jQuery(this).attr('href');
    console.log('img_src :'+ img_src);

    jQuery('.larg-img').attr('href',img_src);
    jQuery('.large-img').attr('src',img_src);
    return false;
  });

只需要该事件对所有图像起作用即可。 您可以通过单击向上箭头来测试该错误。

0 个答案:

没有答案