我在vuejs中有一个事件

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

在Firefox中,我得到一个错误
TypeError: event is undefined
mounted/<
re/e.prototype.$emit
filterPeople

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

最佳答案

Firefox doesn't have a global event object



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

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

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

10-10 09:08