0)-6ren">
gpt4 book ai didi

javascript - 使用 Firefox 浏览时 Jquery 不工作

转载 作者:行者123 更新时间:2023-11-30 16:48:47 25 4
gpt4 key购买 nike

你好,我正在使用这段代码:

$("#cart").click(function () {
if ($(event.target).closest('.content').length > 0) return false;
$('#cart').load('index.php?route=module/cart #cart > *');
var e = window.event || e;
$("#cart").toggleClass("active");
e.stopPropagation();
$(document).click(function (e) {
$("#cart").removeClass("active");
$('#cart').live('mouseleave', function () {
// Code Here
});
});
});

它在 Chrome 中运行良好,但在 Firefox 中测试时它不起作用。行不通的是:

if ($(event.target).closest('.content').length>0) return false; 

为什么这在 Chrome 中有效但在 Firefox 中无效?

最佳答案

你没有传递事件参数

这样试试

$("#cart").click(function(event) {
// now put your code here
}

关于javascript - 使用 Firefox 浏览时 Jquery 不工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30837948/

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