标签优先于输入标题属性。如果标签存在,JAWS 会读取它,否则如果标题存在,JAWS 会读取它。
在这种情况下不读取title属性,读取可见文本
- 不对。
来自http://www.w3.org/TR/html401/struct/global.html#adef-title:
音频用户代理可以在类似的上下文中说出标题信息。例如,在链接上设置属性允许用户代理(可视和非可视)告诉用户链接资源的性质:
我在这段代码上使用 JAWS 进行了测试:
<FORM action="http://somesite.com/prog/adduser" method="post">
<LABEL for="firstname">First name Label: </LABEL>
<INPUT title="first name Title" type="text" id="firstname"><BR>
<INPUT title="Last name Title" type="text" id="lastname"><BR>
<LABEL for="email">email Label: </LABEL>
<INPUT type="text" title="Email Title" id="email"><BR>
<INPUT type="radio" name="sex" value="Male"> Male<BR>
<INPUT type="radio" name="sex" value="Female"> Female<BR>
<INPUT title="Send title" type="submit" value="Send"> <INPUT type="reset">
</FORM>
我还应该指出,Freedom Scientific有一个试用下载 (ftp),它可以让您更深入地了解网页对用户的外观。