如何通过Typescript(Angular2)检测页面上的任何位置

时间:2017-04-05 14:54:58

标签: angular typescript

如何通过Typescript检测页面上的任何位置?在AngularJS 2中

1 个答案:

答案 0 :(得分:5)

您可以将HostListener范围限定在文档中。

import { Component, HostListener } from '@angular/core'    

class MyComponent {

    @HostListener('document:click', ['$event'])
    documentClick(event: MouseEvent) {
        // your click logic
    }
}