Angular2 如何使用jquery

2018-06-24 00:55:15来源:未知 阅读 ()

新老客户大回馈,云服务器低至5折

网上找了很多版本尝试都不行,最后在stackoverflow上找到一个,尝试完美解决

具体操作步骤如下

1. 安装jquery

     npm install jquery

2.安装 type for jquery

    npm install -D @types/jquery

3.在组件中使用jquery

  impor * from $ from ‘jquery’

import { Component,OnInit,ElementRef } from '@angular/core';
import * as $ from 'jquery';


@Component({
  selector: 'app-root',
  templateUrl: './app.component.html',
  styleUrls: ['./app.component.css']
})
export class AppComponent {
  title = 'app';
  greeting(): void {   
    $("body").append("<h3>test</h3>");
  }
}

  

前台页面

<div style="text-align:center">
  <h1 id="title">
    Welcome to {{title}}!
  </h1>  
  <button (click)="greeting()">Clic Me</button>
</div>

  

标签:

版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有

上一篇:FCC 基础JavaScript 练习1

下一篇:自定义事件