我已经花了几个小时试图弄清楚如何获得一个jQuery函数来将magento中的数量框与价格相乘。这是我到目前为止所拥有的:
$('.add-to-cart.bottom .input-text').blur(function () {
var a = $('input[name="qty"]').html();
var b = $('#product-price-11_clone.span.price').html().replace("$", "");
$.jGrowl("Lifeline Bands <br />Quantity: " + $(this).val() + "<br />Estimated Cost:" + $('.total').html(parseInt(a) * parseInt(b));
});
我已经拉了几个小时的头发,有人可以帮忙吗?我正在使用 jGrowl,我只需要显示框来显示数量框与价格的乘积。