我正在尝试获取活动元素的角色属性。我可以获取所有其他属性,例如id
,class
,title
等,如下所示
document.activeElement.title
document.activeElement.class
document.activeElement.tabindex
...但是我无法使用document.activeElement.role获得角色属性。抛出
undefined
。如何获得
role
属性? 最佳答案
document.activeElement.getAttribute('role');
关于javascript - 如何使用jQuery或Javascript获得activeElement的 Angular 色,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/45335022/