【发布时间】:2020-06-15 00:13:18
【问题描述】:
如何从点击监听器访问按钮属性?我想访问 aria-expanded 来设置一些值;这是我得到的。
x.html
<button class="btn btn-secondary" (click)="customSearch($event.target)" type="button" data-toggle="collapse" data-target="#collapseForm" aria-expanded="false" aria-controls="collapseForm">Search</button>
x.ts
customSearch(e){
console.log("some event--->",e);
}
结果
【问题讨论】:
-
你试过
this.getAttribute("aria-expanded")吗?
标签: javascript html angular typescript bootstrap-4