我正在尝试从Angular组件设置click属性,因为我正在从组件生成动态html。当我尝试设置属性onclick它在Angular4中不起作用。
var Atag = document.createElement("button");
Atag.setAttribute("onCClick","callFunction()"); // This is not working
我想要这样的结果
<button (click)="callfunction() >Button</button>
我怎样才能实现这个目标
答案 0 :(得分:0)
看起来你有一个类型:
setAttribute("onCClick")
应该是
setAttribute("onClick")