为了账号安全,请及时绑定邮箱和手机立即绑定

如何在TypeScript中应用像Jquery之类的第三方JavaScript框架

如何在TypeScript中应用像Jquery之类的第三方JavaScript框架

侃侃尔雅 2019-03-04 04:04:12
如何在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");


 


查看完整回答
反对 回复 2019-03-15
  • 2 回答
  • 0 关注
  • 457 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信