如何在TypeScript中应用像Jquery之类的第三方JavaScript框架
2 回答
MYYA
TA贡献1868条经验 获得超4个赞
针对Typescript2.0以上版本
1 | npm install --save @types/jquery |
针对Typescript2.0以下版本
1 2 3 4 | // 1. Install typings npm install typings -g // 2. Download jquery.d.ts (run this command in the root dir of your project) typings install dt~jquery --global --save |
然后在你的代码库里就可以用jquery了
1 2 3 | import $ from "jquery"; // or import $ = require("jquery"); |
添加回答
举报
0/150
提交
取消