小编Mic*_*l M的帖子

咏叹调标签与表单标签

这两种屏幕阅读器技术在表单上是否有任何区别,一种比另一种更受鼓励:

<label for="titleInput">Title</label>
<input type="text" id="titleInput" name="title" value="">


<div>Title</div>
<input type="text" aria-label="Title" name="title" value="">
Run Code Online (Sandbox Code Playgroud)

第一种方法一直是设置它的方法,但是自从引入 WAI-ARIA 后,我开始思考使用aria-label表单是否比使用<label for="x">.

html forms accessibility screen-readers wai-aria

4
推荐指数
1
解决办法
1911
查看次数

标签 统计

accessibility ×1

forms ×1

html ×1

screen-readers ×1

wai-aria ×1