如何在angular2裡面使用jquery等插件
例如:
class MyComponent {
constructor() {
// how to query the DOM element from here?
}
}
雖然看過幾個答案,但是沒看明白,自己動手也都失敗了,求教
某草草2017-05-15 17:10:46
先安裝jquery
tsd install jquery --save
或
typings install dt~jquery --global --save
在需要使用的ts檔案頭部寫
declare var $: any;
這樣在你的該 ts 檔案中就可以使用jquery了