【发布时间】:2017-11-01 02:47:30
【问题描述】:
我在 iOS 中使用 UIWebView 处理以下 html 代码:
<body>
<p><strong>IMPORTANT:</strong> This is desc text.</p>
...
</body>
我想要集中注意力并说“重要提示:这是描述文本。”在具有可访问性的同时,如果我使用以下内容,请只专注并说“重要”
<body>
<p aria-selected="true" ><strong>IMPORTANT:</strong> This is desc text.</p>
...
</body>
如果我使用以下内容,可以集中注意力但不会说重要
<body>
<p aria-selected="true" ><strong aria-hidden="true">IMPORTANT:</strong> This is desc text.</p>
...
</body>
【问题讨论】:
标签: ios webview accessibility wai-aria