html如何使用aria属性播放声音

时间:2015-12-17 12:07:41

标签: html html5 wai-aria

在我的页面中有一个对话框表单。在对话框中有一个按钮关闭。 关闭按钮可能对视障者不明显。 我希望用户在关注对话框中的关闭按钮时听到“关闭对话框”。但是没有使用源音频文件。

我的朋友建议使用HTML ARIA。 任何人都可以帮助我。谢谢!

1 个答案:

答案 0 :(得分:0)

您可以使用aria-label

Taken from this example from MDN:

<button aria-label="Close" onclick="myDialog.close()">X</button>

this SO answer

中也有解释