aria-expanded =“ true”使屏幕阅读器用英语阅读“ expanded”,这是正确的。 但是有可能使它在法语网页上显示为“développé”。 我正在使用Angular i18n进行翻译。
<button [attr.aria-expanded]="expanded"
aria-label="sample"
i18n-aria-label="@@sample"
(click)="toggle(row)"
[ngClass]="{ expanded: expanded }">
</button>
.ts文件中的“ expanded”为true / false。