如何将Angular属性添加到HTML元素

时间:2018-08-21 19:14:02

标签: javascript html angular

我需要知道如何通过JavaScript向html按钮添加angular属性(click) = function()

注意:我无法修改HTML,只能通过JavaScript添加属性。

我使用 addEventListener 进行了测试,它通过添加常见的JavaScript click = "function"事件(而非Angular的(click))来工作。

我附上代码:

import { Component, OnInit } from '@angular/core';

@Component({
  selector: 'app-iframe',
  templateUrl: './iframe.component.html',
  styleUrls: ['./iframe.component.scss']
})
export class IframeComponent implements OnInit {
  constructor() {}

  ngOnInit() {
  }

  capture() {         
      let button = document.getElementById('cancelButton').addEventListener('(click)', this.cancel.bind(Event));
  }

  cancel() {
      console.log('Cancelled');
  }
}

这里的HTML:

<div class="row text-center pad-md">
  <button id="acceptButton" mat-raised-button color="primary">OK!</button>
  <button id="cancelButton" mat-raised-button>Cancel</button>
</div>

1 个答案:

答案 0 :(得分:0)

如作者所述,该事件需要动态附加到在请求后创建的DOM元素上,因此您可以使用Renderer2 监听点击事件。您的代码应如下所示:

import { Component, OnInit, Renderer2 } from '@angular/core';

@Component({
  selector: 'app-iframe',
  templateUrl: './iframe.component.html',
  styleUrls: ['./iframe.component.scss']
})
export class AppComponent implements OnInit {
  name = 'Angular';

  constructor(private renderer: Renderer2) {}

  ngOnInit() {}

  capture() {         
      const button = document.getElementById('cancelButton');
      console.log(button);
      this.renderer.listen(button, 'click', this.cancel);
  }

  cancel() {
      console.log('Cancelled');
  }
}

有一个实用的示例here