错误TypeError:e.addClass不是函数

问题描述 投票:0回答:2

我正在使用Angular 6,我已经安装了一个Primeng库来使用它的完整时间表,然后我收到了这个错误。

jquery angular fullcalendar primeng
2个回答
0
投票

我想e是点击或类似的事件。要选择发生事件的元素,请使用e.target

注意:您的问题非常不清楚,并且在Stackoverflow规则的上下文中完全无效。请在将来首先阅读how to askHow to create a Minimal, Complete, and Verifiable example

请参阅下面的代码段

$("p").on('click',function(e) {
  $(e.target).addClass('clicked');
});
p.clicked {
   color:red;
}
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<p>Click Me</p>

0
投票

尝试安装[email protected]添加这对我有用。

© www.soinside.com 2019 - 2024. All rights reserved.