码迷,mamicode.com
首页 > 其他好文 > 详细

Angular4 @HostBinding @HostListener

时间:2017-12-12 13:53:02      阅读:175      评论:0      收藏:0      [点我收藏+]

标签:eve   angular4   tor   body   oar   mil   sele   方法   angular   

host属性

@Component({

selector: ‘jhi-project‘,

templateUrl: ‘./project.html‘,

styleUrls: [],

host: { ‘(window:keydown)‘: ‘keyboardInput($event)‘ }    //绑定事件和方法

})

export class JhiProjectComponent {

    keyboardInput(event) {

        if (event.keyCode == 65 && event.ctrlKey) {

          // ctrl + a

          ....

        }

  }

}

@HostBinding

@HostListener

Angular4 @HostBinding @HostListener

标签:eve   angular4   tor   body   oar   mil   sele   方法   angular   

原文地址:http://www.cnblogs.com/xuepei/p/8027188.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!