gpt4 book ai didi

javascript - 在 'updated_cart_totals' jQuery 事件上获取 WooCommerce 刷新购物车总数

转载 作者:行者123 更新时间:2023-11-30 13:53:53 26 4
gpt4 key购买 nike

我正在使用 updated_cart_totals jQuery 事件来监听 WooCommerce 购物车更新。每当我更新购物车时它都会起作用,但我还需要获取新的购物车总数。

这是我监听“updated_cart_totals”事件的基本代码:

$(document.body).on('updated_cart_totals', function (event) {
alert("in here");
});

最佳答案

要使用 updated_cart_totals 事件获取刷新的购物车总数,请尝试以下操作:

jQuery( function($){
$(document.body).on('updated_cart_totals', function () {
// Get the formatted cart total
var total = $('div.cart_totals tr.order-total span.woocommerce-Price-amount').html();

total = total.replace(/,/g, '.'); // Replace comas by points
total = parseFloat(total).toFixed(2); // Extract float number and format it with 2 decimals

console.log(total); // Display it in the browser console
alert(total); // Display it in an alert box
});
});

它应该按预期工作。

关于javascript - 在 'updated_cart_totals' jQuery 事件上获取 WooCommerce 刷新购物车总数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57663997/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com