gpt4 book ai didi

javascript - 如何停止此页面上的jquery和prototype之间的冲突

转载 作者:行者123 更新时间:2023-12-03 02:56:53 28 4
gpt4 key购买 nike

此页面是 magento 和 wordpress 主题的组合。不幸的是,jquery 导致原型(prototype)无法工作,但我并不擅长使用开发人员工具来定位此类问题。我的理解是,我需要在 noConflict 模式下运行 jquery,但我找不到从 wordpress 主题调用它的位置。谁能告诉我如何找到这个问题或解决问题。 http://www.findcarpettiles.co.uk/wp/general-information/free-samples-measurement/谢谢

最佳答案

包含 jQuery 并自动以无冲突模式运行。我相信您的问题是您包含两个版本的 jQuery(一种来自 Magento,一种来自 WP)。如果我是您,我会将以下内容添加到您的functions.php 中以阻止 WP 包含其 jQuery 版本。

add_filter( 'wp_default_scripts', 'change_default_jquery' );

function change_default_jquery( &$scripts){
if(!is_admin()){
$scripts->remove( 'jquery');
}
}

关于javascript - 如何停止此页面上的jquery和prototype之间的冲突,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47578806/

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