根据颜色变化而不是尺寸更改图像并仅显示(相应的小缩略图)
Change image on color variation not on size and show only (small thumbnail accordingly )
这里是虚拟产品的link
http://2fitsports.com/shop/men-cycling-wears/full-sleeve-jersey/cycling-full-sleeve-jersey/
jQuery( document ).ready(function() {
jQuery('.filter-item-list[data-name="attribute_pa_color"] a').on('click', function() {
if(!jQuery('.filter-item-list[data-name="attribute_size"] li').hasClass("active")){
jQuery('.filter-item-list[data-name="attribute_size"] li:nth-child(1) a').trigger("click");
}
});
});
这里是虚拟产品的link http://2fitsports.com/shop/men-cycling-wears/full-sleeve-jersey/cycling-full-sleeve-jersey/
jQuery( document ).ready(function() {
jQuery('.filter-item-list[data-name="attribute_pa_color"] a').on('click', function() {
if(!jQuery('.filter-item-list[data-name="attribute_size"] li').hasClass("active")){
jQuery('.filter-item-list[data-name="attribute_size"] li:nth-child(1) a').trigger("click");
}
});
});