如何在Angular2中使用jQuery及其插件的方法
程序员文章站
2022-03-07 11:08:54
jquery,让我们对dom的操作更加便捷。由于其易用性和可扩展性,jquer也迅速风靡全球,各种插件也是目不暇接。
我相信很多人并不能直接远离jquery去做前端,因为...
jquery,让我们对dom的操作更加便捷。由于其易用性和可扩展性,jquer也迅速风靡全球,各种插件也是目不暇接。
我相信很多人并不能直接远离jquery去做前端,因为它太好用了,我们以前做的东西大多基于jquery和它的插件。而且现在angular2的组件生态还不是很完善,我们在编写angular的时候也许会想要用到jquery。本篇文章就简单介绍下在angular2中使用jquery
如果你不知道怎么搭建angular2开发环境,请参考这篇文章:
环境搭好只后先跑起来,然后我们进行下面步骤
首先在index.html中引用jquery,就像我们以前做的那样
然后我们编写我们的app.component.ts
import { component,oninit} from '@angular/core'; declare var $:any; @component({ selector: 'app-root', templateurl: './app.component.html', styleurls: ['./app.component.css'] }) export class appcomponent implements oninit{ ngoninit() { $("#title").html("<p>this is a string from jquery html setting</p>"); } }
首先需要使用declare生命我们的jquery,使之成为一个可用的变量,然后,我们需要导入oninit模块并实现,我们编写的jquery代码就在这里,问中展示了我们向id为title的标签替换内容,html页面是这样的
<div id="title" class="title"> </div>
然后,接下来的运行效果是这样的
这就意味着我们可以在angular2中正常使用jquery了
接下来做个简单的jquery插件使用的例子,首先找一个我们要使用的jquery插件
首先在index.html 中引用
然后在我们刚才的app.component.ts中的ngoninit中写入以下初始化插件代码
ngoninit() { $(".card").facecursor({}); $("#title").html("<p>this is a string from jquery html setting</p>"); }
然后我们编写html
<div id="title" class="title"> </div> <div class="container"> <div class="card"> <img src="../assets/me.jpg" style="width:100%;" alt="me"> </div> </div>
css
.card { background: #fff; box-shadow: 0.5em 0 1.25em #ccc; border-radius: .3em; overflow: hidden; max-width: 20em; height: 450px; margin: 0 auto; display: block; } .title{ text-align: center; } .container { width:100%; }
这些工作做了之后,我们运行下,就可以得到以下效果
备注:需要使用到jquery的地方都要用declare声明以下,比如其他组件文件中。
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。