答案 0 :(得分:3)
要在 Angular2 TypeScript 模型中使用jQuery
等全局变量,您可以执行以下操作:
import // omitted for brevity...
declare var jQuery; // Declare it outside the scope of your class.
export class FooBar {
constructor() {
jQuery('selector').blah(...); // Use it
}
我已经使用了几次,但是这样做很少。这当然不赞成......我只使用了完全限定的名称jQuery
,但我认为你也可以使用$
。