0

부트 스트랩에 사용 된 모달 안에 선택 요소가 있습니다. 화면 판독기 (Jaws)가로드 될 때 선택 상자를 읽으면 선택 항목의 모든 옵션을 읽습니다. 대신 일반 페이지 에서처럼 "콤보 상자 (옵션 값)는 위쪽 및 아래쪽 화살표 키를 사용하여 변경할 수 있습니다"라고 읽어야합니다. select 요소를 탭하면, 그 방법으로 읽습니다.접근성이 제대로 선택되지 않음 (JAWS)

부트 스트랩 모달 : http://getbootstrap.com/docs/3.3/javascript/#modals-examples

나는 현재

이 codepen 테스트 죠스 (18)와 IE 11을 사용하고 있습니다 : https://codepen.io/thecssguru/pen/BmvobW

<!-- Button trigger modal --> 
<button type="button" class="btn btn-primary btn-lg" data-toggle="modal" data-target="#myModal"> 
    Launch demo modal 
</button> 

<!-- Modal --> 
<div class="modal fade" id="myModal" tabindex="0" role="dialog" aria-labelledby="myModalLabel"> 
    <div class="modal-dialog" role="document"> 
    <div class="modal-content"> 
     <div class="modal-header"> 
     <button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">&times;</span></button> 
     <h4 class="modal-title" id="myModalLabel">Jaws Test</h4> 
     </div> 
     <div class="modal-body"> 
     <p> The list should not read all the values 
</p> 
<select> 
    <option>January 10, 2017</option> 
    <option>January 11, 2017</option> 
    <option>January 12, 2017</option> 
    <option>January 13, 2017</option> 
    <option>January 14, 2017</option> 
    <option>January 15, 2017</option> 
</select> 
     </div> 
     <div class="modal-footer"> 
     <button type="button" class="btn btn-default" data-dismiss="modal">Close</button> 
     <button type="button" class="btn btn-primary">Save changes</button> 
     </div> 
    </div> 
    </div> 
</div> 
+0

코드 샘플은 여기에서 무슨 일이 일어나고 있는지 진단하는 데 도움이 될 수 있습니다. – Josh

+0

@Josh 방금 추가했습니다. – BeastMaster

답변

0

당신은 파이어 폭스 브라우저로 턱을 테스트해야합니다
행운
쉘리
접근성 전문가