MYYA
针对Typescript2.0以上版本1npm install --save @types/jquery针对Typescript2.0以下版本1234// 1. Install typingsnpm 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了123import $ from "jquery";// orimport $ = require("jquery");