这是 html 代码,我在其中添加了指向函数的单击事件,并且该函数将提醒一些消息。
<div class="horizontal-align" *ngFor="let taxId of selectedTaxIds">
<button class="btn btn-rounded" disabled *ngIf="taxId.Tin !== 'All'">
<span >Taxi ID: </span>
<span class="text-semibold pl-4"> {{ taxId.Tin }} </span>
<div class="close-btn" (click)="newfun()" >
<mat-icon class="icon-display" svgIcon="close"></mat-icon>
</div>
</button>
</div>
newfun(){
alert('some message')
}
这在 chrome 中工作正常,但在 IE 中不行。我尝试向标签声明一个 id,并使用工作正常的 document.getElementById 方法选择 id。即使在检查代码时,我也可以在 IE 开发人员工具事件选项卡中看到单击事件。请帮我解决这个问题
jeck猫
相关分类