gpt4 book ai didi

javascript - Vuejs 事件在 Firefox 中不起作用 - 在 Chrome 中很好

转载 作者:数据小太阳 更新时间:2023-10-29 04:43:24 24 4
gpt4 key购买 nike

我在vuejs中有一个事件

methods: {
filterPeople: function filterPeople() {
$(event.target).closest('li').addClass('active');
});

在 firefox 中我得到一个错误

TypeError: event is undefined
mounted/<
re/e.prototype.$emit
filterPeople

知道为什么这在 FF 中不起作用

最佳答案

火狐 doesn't have a global event object .

WebKit follows IE's old behavior of using a global symbol for "event", but Firefox doesn't.

只需将其添加为参数即可。

methods: {
filterPeople: function filterPeople(event) {
$(event.target).closest('li').addClass('active');
}
}

关于javascript - Vuejs 事件在 Firefox 中不起作用 - 在 Chrome 中很好,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46120360/

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