我有一个页面,其中包含产品图片(代表产品颜色)和产品颜色选择框。此页面是使用Squarespace Commerce构建的,并使用YUI。
如果您使用选择框更改产品颜色,则会运行一些代码来更新javascript变量以反映您选择的产品。
我正在尝试更改页面,以便在用户选择图像时,选择框会自动更新。我已成功实现此功能(选择框更改为相关颜色),但有一个YUI模块,其中包含未运行的代码。正是此代码更新了javascript变量以反映所选产品。
我尝试通过触发选择框上的change
事件来运行此代码,但它没有任何影响。
这是YUI代码:
YUI.add("squarespace-product-utils", function (a) {
a.Squarespace.ProductUtils = {
initializeVariantDropdowns: function () {
a.all(".product-variants[data-variants]").each(function (e) {
var b = JSON.parse(e.getAttribute("data-variants")),
c = e.all("select"),
d = e.siblings(".product-price").item(0),
g;
d && (g = d.getHTML());
a.Squarespace.ProductUtils._checkVariantStockAndPrice(e, b, c, d, g);
c.detach("change");
c.each(function (f) {
f.after("change", function (f) {
a.Squarespace.ProductUtils._checkVariantStockAndPrice(e, b, c, d, g)
}, this)
},
this)
}, this)
},
_checkVariantStockAndPrice: function (e, b, c, d, g) {
e.removeAttribute("data-unselected-options");
e.removeAttribute("data-selected-variant");
e.removeAttribute("data-variant-in-stock");
var f = e.one(".variant-out-of-stock");
f && f.remove();
var h = [],
f = null,
k = !1,
l = {};
c.each(function (a) {
var b = a.get("value");
a = a.getAttribute("data-variant-option-name");
"none" != b ? l[a] = b : h.push(a)
}, this);
if (0 === h.length) {
for (c = 0; c < b.length; c++) {
g = b[c];
var t = !0,
n;
for (n in l)
if (l[n] != g.attributes[n]) {
t = !1;
break
}
if (t) {
f =
g;
if (g.unlimited || 0 < g.qtyInStock) k = !0;
break
}
}!f && d ? d.set("text", "Unavailable") : d && (f.onSale ? (d.setHTML(a.Squarespace.Commerce.moneyString(f.salePrice)), d.append(a.Node.create('<span> </span><span class="original-price">' + a.Squarespace.Commerce.moneyString(f.price) + "</span>"))) : d.setHTML(a.Squarespace.Commerce.moneyString(f.price)));
f && !k && e.append(a.Node.create('<div class="variant-out-of-stock">Out of stock.</div>'))
} else d && d.getHTML() !== g && d.setHTML(g);
e.setAttribute("data-unselected-options",
JSON.stringify(h));
f && e.setAttribute("data-selected-variant", JSON.stringify(f));
k && e.setAttribute("data-variant-in-stock", k)
}
}
}, "1.0", {
requires: ["base", "node", "squarespace-commerce-utils"]
});
这是我添加的javascript代码,用于更新选择框和(尝试)触发更改事件:
$(document).on('click', '#productThumbnails .slide', function() {
var colorindex = $(this).index() + 2;
$('#productDetails .product-variants select').val($('#productDetails .product-variants select :nth-child(' + colorindex + ')').val()).change();
});
我的代码成功更新了选择框,但它似乎没有触发更改事件。我认为线索在f.after("change", ...
左右,但我对YUI一无所知,找不到任何帮助。
UPDATE:如果我使用jQuery添加更改事件, 会触发更改事件,但它仍然不会触发YUI添加的更改事件
如何触发此代码?
您可以在操作here中看到(失败的)代码。
答案 0 :(得分:1)
要触发YUI模块,请使用use
函数,该函数引用原始实例,如下所示:
YUI().use('squarespace-product-utils', function (a) {
a.Squarespace.ProductUtils.initializeVariantDropdowns();
});