我正在建立一个 Woocommerce 网站,我想在结帐页面上禁用机车滚动。
我试过这段代码,但它不起作用。如何禁用特定页面的机车?我的网站没有运行 Ajax。
const scroll = new LocomotiveScroll({
el: document.querySelector('[data-scroll-container]'),
smooth: true,
smoothMobile: true,
getSpeed: true,
getDirection: true
});
window.addEventListener("load", function() {
if ($('.woocommerce-checkout').length) {
scroll.stop();
scroll.destroy();
}
});
谢谢!