1
2
3
4
5
6
7
8
//ts引用jquery
//可以直接引用cdn
//解决$报错问题
declare var $:any;
//或者 新建文件 声明文件 jquery.d.ts
//此方法需要自己编写 很复杂

//或者 npm i @types/jquery