我遇到以下错误:
参数列表后未捕获到的SyntaxError:缺少
这是我的JS代码
$('#product_price .price').html('<span class="money"><strong>'Sale Price: + Shopify.formatMoney(variant.price, "${{amount}} USD") + '</strong></span>');
谢谢。
答案 0 :(得分:0)
尝试
$('#product_price .price').html('<span class="money"><strong>Sale Price:' + Shopify.formatMoney(variant.price, "${{amount}} USD") + '</strong></span>');