繁体   English   中英

如何访问按钮的 aria-expanded 值

[英]How can I access aria-expanded value of a button

如何从单击侦听器访问按钮属性? 我想访问 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);
  }

结果

在此处输入图片说明

由于您已经将 dom 对象作为参数传递,您可以使用 getAttribute 方法直接获取其属性

 customSearch(buttonDOM) { console.log("some event--->", buttonDOM.getAttribute('aria-expanded')); }

我建议您创建一个修改按钮的指令,这是一个示例

import { Directive, ElementRef, Renderer, HostListener } from '@angular/core';
@Directive({
    selector: '[aextended]'
})
export class AextendedDirective {
    constructor(private el: ElementRef, private renderer: Renderer) {

    }
    @HostListener('click') onClick() {
     this.el.nativeElement.setAttribute('aria-expanded','true');
    }
}

然后在你的模板中

<button aextended class="btn btn-secondary" (click)="customSearch($event.target)" type="button" data-toggle="collapse" data-target="#collapseForm" aria-expanded="true" aria-controls="collapseForm">Search</button>

这是一个工作案例的堆栈闪电战

如果你真的想从控制器设置它,你可以这样做

  customSearch(el){
    el.setAttribute('aria-expanded','true')
  }

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM