我已经编写了一个jQuery插件并托管在服务器上。这个插件包含一个min.js和.css文件。
注意:该插件在npm上不可用。
我按照以下步骤将此插件与Angular 5应用程序集成:
npm install jquery
npm install -D @types/jquery
import * as $ from 'jquery'; (This is written in the component.ts file)
我在插件min.js和.css文件中添加了对index.html的引用。
在component.ts file --> $("#testdiv").pluginfunction()
中使用时,出现此错误:
pluginfunction is not defined.