選択のすべてのオプションをジョーに読み取らせる簡単な方法はありますか?
<div class="mySelectLabel">
<label for="mySelectId" class="mySelectLabel">
<span class="required" aria-hidden="true" role="presentation">*</span>
<span class="offScreenText">Mandatory</span>
<span class="labelText">Are you old enough?</span>
</label>
</div>
<div class="myDivClass">
<select id="mySelectId" name="mySelectName">
<option value="">Please Select...</option>
<option selected="selected" value="Y">Yes</option>
<option value="N">No</option>
</select>
</div>
現在、jaws... Are you old enough? Combo box Yes
は、クライアントがすべてのオプションを読み取ることを望んでいます。
あごが読めるように隠しテキストを出力できると思いますが、適用できるアリア設定または同様のものがあればもっといいでしょう。