2018-03-06-typescript-ts中引入使用jquery插件

命令行输入:





// typescript2.0+推荐使用这种。
npm install --save-dev @types/jquery


npm install jquery 

// 安装typing,用于获取jquery的d.ts文件。
// 这步过后你的根目录会多一个typings.json文件
install typings


// 获取d.ts文件
// 这步过后,在typings/globals文件夹中就可以看到jquery了
typings install dt~jquery --global --save


然后在你的ts文件中引用



import $ = require("jquery");

$.each(['a','b','c'], function (index, value) {
    console.log(index + " " + value);
})

console.log($('#greeting').html());

其中Hellox from tsdiv#greeting中的html。

2018-03-06-typescript-ts中引入使用jquery插件_第1张图片

你可能感兴趣的:(解决问题,jquery,typescript)