Primeface确认对话框可访问性

时间:2018-09-06 09:55:42

标签: primefaces jsf-2 accessibility confirm-dialog

我的屏幕阅读器(Orca 3.22.2)无法访问确认对话框。

阅读器仅读取标题,而不读取对话框的消息。由于默认情况下焦点位于第一个按钮上(大部分时间位于文本的后面),因此特别麻烦。

有没有人设法通过在内容中使用arias或任何可行的方法来绕过此问题?

编辑:对话框的呈现代码:

 <div role="dialog" aria-labelledby="form:j_idt152_title" aria-hidden="false" aria-live="polite">
        <div>
           <span>Dialog Title </span>
           <a href="#" aria-label="Close" role="button">
                 <span class="ui-icon ui-icon-closethick"></span>       
          </a>
        </div>
        <div>
           <span ></span>
           <span >Message that needs to be read</span>
        </div>

        </div>
           <input id="form:ok" name="form:ok" value="ok" title="explanation on button" type="submit">
         <input  value="close" type="button">
        </div>
    </div>

0 个答案:

没有答案