angular 引入jquery

前端之家收集整理的这篇文章主要介绍了angular 引入jquery前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

1

npm install jquery — save

2

.angular-cli.json

“scripts”: [ “../node_modules/jquery/dist/jquery.min.js” ]

3

app.component.ts

import * as $ from ‘jquery’;

测试

$('body').addClass('aaa');
原文链接:https://www.f2er.com/angularjs/145068.html

猜你在找的Angularjs相关文章