5

我有一个弹出窗口,用户必须单击才能填写表格并提交表格。我不想离开页面,因此我使用弹出窗口的原因(也对此提出建议)。

我在这里遇到的问题是 JAWS(屏幕阅读器)无法识别弹出窗口何时打开。我尝试将焦点设置到弹出窗口内的一个输入字段,但它只读取该输入字段,然后继续读取原始页面。忽略标题和除焦点输入之外的任何其他内容。任何人都知道我如何提醒屏幕阅读器弹出窗口已打开,然后强制屏幕阅读器阅读弹出窗口并停止?

这是按钮,单击时会显示弹出窗口:

<button type="submit" name="btnCreatee" id="btnCreate" value="#createIndexDialog">Create Index</button>

这是弹出窗口的 HTML 内容:

    <div id="createIndexDialog" class="window" style="background-color:#ffffff;">
<div align="right"><a href="#" class="closeIndexCreation" id="closeIndexCreation"></a></div>
    <h2 style="text-align:center;color:#333;">Create an Index</h2>
    <br />
    <ul class="statusMessages" style="background: transparent;"></ul>
    <form name="createIndexFrm" id="createIndexFrm" method="post" action="createIndex.do">
        <input type="hidden" name="operation" value="create">
        <div id="t" border="0">
            <div style="display:block;margin:0 0 15px 54px;">
                <span ><b>Name:</b><input type="text" class="requiredField" maxlength="16" name="name" id="name" size="40" onblur="checkform()" style="margin-left:8px;"></span>
            </div>
            <div style="display:block;margin:0 0 15px 104px;">
                <span>
                    <ul style="list-style:none;background:#fff;border:2px solid #ebebeb;padding:5px;border-radius:5px;width:auto;">
                        <li>Index name can not be changed later.</li>
                        <li>It is not case sensitive.</li>
                        <li>Specify from 1 to 30 characters using letters (A-Z, a-z) or numbers (0-9)</li>
                    </ul>
                </span>
            </div>
            <div style="display:block;margin:0 0 15px 54px;">
                <span ><b>Type:</b><input type="radio" name="data_source_type" value="0" checked style="margin-left:5px;"> Database, <i>Select data via database connection</i></span>
            </div>
            <div style="display:block;margin:0 0 15px 0px;">
                <span ><b>Display Name:</b><input type="text" maxlength="30" name="displayName" id="displayName" size="40" value="" style="margin-left:8px;"></span>
            </div>
            <div style="display:block;margin:0 0 15px 15px;">
                <span ><b>Description:</b><textarea name="desc" id="desc" cols="75" rows="3" wrap="virtual" style="margin-left:5px;"></textarea></span>
            </div>
            <div style="display:block;margin-left:240px;">  
                <span><button type="submit" class="general ui-corner-all" name="submitCreate" id="submitCreate" onclick="createIndexFrm.operation.value='create'; document.createIndexFrm.submit(); return false;">Create</button></span>
            </div>
        </div>
    </form></div>

这是创建和显示弹出窗口的代码:

$('button[name=btnCreatee]').click(function(e) {
            e.preventDefault();
            var id = $(this).attr('value');
            var maskHeight = $(document).height();
            var maskWidth = $(window).width();
            $('#mask').css({'width':maskWidth,'height':maskHeight});
            $('#mask').fadeIn(200);
            $('#mask').fadeTo("fast",0.8);
            var winH = $(window).height();
            var winW = $(window).width();               
            //$(id).css('top',  winH/2-$(id).height()/2);
            //$(id).css('left', winW/2-$(id).width()/2);
            //$(id).fadeIn(400);
            $('#createIndexDialog').css('left', winW/2-$('#createIndexDialog').width()/2);              
            $('#createIndexDialog').show();

        });

PS 我正在编辑现有代码以使页面 508 兼容/可访问。

4

3 回答 3

2

<div id="createIndexDialog"

添加role="alertdialog"

这将帮助屏幕阅读器识别弹出窗口。

于 2014-01-18T16:30:24.163 回答
0

当涉及到 508 合规性时,JQuery 弹出窗口非常讨厌。但是你可以做一些事情来帮助 JAWS 更好地阅读它。

  • 添加标签以将每个控件绑定到其标签。
  • 将标签内的表单控件分组
  • 您是否可以将表单放在此页面的内联部分中?这样,您可以在需要之前隐藏该部分,然后展开页面以将其显示给用户。
于 2013-12-04T18:52:00.023 回答
0

你为什么要开一个新窗口?这将有助于:

window.open('windowname');
于 2013-11-03T14:02:12.050 回答