初始化回调函数

发布于 2024-10-11 02:11:21 字数 360 浏览 0 评论 0原文

我有一段 jQuery,它使用选择回调。

 new Shopify.OptionSelectors("product-variants", {product: product, onVariantSelected: selectCallback}); // initialize multi selector for product 

但是,当我尝试使用 jQuery 选择时,它不会初始化回调

 $("#product-variants-option-0 option[value=" + selectedVal+"]").attr("selected","selected") ; 

I have this piece of jQuery which is using a call back on selection.

 new Shopify.OptionSelectors("product-variants", {product: product, onVariantSelected: selectCallback}); // initialize multi selector for product 

however when I try to select using jQuery it doesn't initialise the callback

 $("#product-variants-option-0 option[value=" + selectedVal+"]").attr("selected","selected") ; 

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

双手揣兜 2024-10-18 02:11:21

更改代码中的属性不会触发任何回调,有两种方法可以处理它。首先,在设置属性后,您应该自己触发回调,否则您可能需要使用触发函数,而不是尝试更改属性:

 $( "radio-button-selector").trigger( "select");

甚至模拟单击:

 $( "radio-button-selector").trigger( "click");

Changing attribute in the code doesn't suppose to fire any callbacks, there are two ways to handle it. First after setting the attribute you should fire he callback yourself or you probably might need to use trigger function instead of trying to change attribute:

 $( "radio-button-selector").trigger( "select");

or even simulate a click:

 $( "radio-button-selector").trigger( "click");
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文