简体   繁体   English

Jaws 正在读取插入 + 向下键时的部分数据

[英]Jaws Is reading partial data on insert + down key press

Table contains 2 thread JAWS read only 1st thread and body it won't read next thread it direcly skip that part, how to resolve this.表包含 2 个线程 JAWS 只读第一个线程和正文它不会读取下一个线程它直接跳过那部分,如何解决这个问题。 when i use insert+down arrow key it should read all data one by one.当我使用插入+向下箭头键时,它应该一个接一个地读取所有数据。

<div class="span16 m-t-2x width-100">
                            <table class="table planValResultsTbl" id="planValResultsTbl">
                                <thead>
                                <tr>
                                    <th class="pad-table align-left">Member</th>
                                    <th class="pad-table align-left">Age</th>
                                    <th class="pad-table align-left">DOB</th>
                                    <th class="pad-table align-left">Coverage Start Date</th>
                                    <th class="pad-table align-left">Non-Capped Premium</th>
                                    <th class="pad-table align-left">Capped Premium</th>
                                </tr>
                                </thead>
                                <tbody>
                                
                                    <tr align="char">
                                        <td class="pad-table">
                                            Primary Applicant</td>
                                        <td class="pad-table align-left">28</td>
                                        <td class="pad-table align-left">
                                            08/08/1994
                                        </td>
                                        <td class="pad-table align-left">
                                            08/15/2022
                                        </td>
                                        <td class="pad-table align-left noncapped" style="text-align: left">$164.00</td>
                                        <td class="pad-table align-left capped" style="text-align: left">$164.00</td>
                                    </tr>
                                
                                </tbody>
                                <thead>
                                <tr align="char">
                                    <th colspan="6" class="pad-table total">
                                        Capped Premium Total   &emsp;
                                        <span class="cappedPremiumCurrencyVal">$164.00</span></th>
                                </tr>
                                </thead>
                            </table>
                        </div>

You can't add more than one <thead> in a single <table> element ( see this previous SO question and the W3C HTML <table> spec for reference).您不能在单个<table>元素中添加多个<thead>请参阅之前的 SO 问题和 W3C HTML <table>规范以供参考)。

You need to place your last row either inside the <tbody> element, or use the <tfoot> element instead.您需要将最后一行放在<tbody>元素内,或者改用<tfoot>元素。

For example:例如:

<div class="span16 m-t-2x width-100">
    <table class="table planValResultsTbl" id="planValResultsTbl">
        <thead>
            <tr>
                <th class="pad-table align-left">Member</th>
                <th class="pad-table align-left">Age</th>
                <th class="pad-table align-left">DOB</th>
                <th class="pad-table align-left">Coverage Start Date</th>
                <th class="pad-table align-left">Non-Capped Premium</th>
                <th class="pad-table align-left">Capped Premium</th>
            </tr>
        </thead>
        <tbody>
            <tr align="char">
                <td class="pad-table">Primary Applicant</td>
                <td class="pad-table align-left">28</td>
                <td class="pad-table align-left">08/08/1994</td>
                <td class="pad-table align-left">08/15/2022</td>
                <td class="pad-table align-left noncapped" style="text-align: left">$164.00</td>
                <td class="pad-table align-left capped" style="text-align: left">$164.00</td>
            </tr>
        </tbody>
        <tfoot>
            <tr align="char">
                <th class="pad-table total" colspan="6">Capped Premium Total &emsp; <span class="cappedPremiumCurrencyVal">$164.00</span></th>
            </tr>
        </tfoot>
    </table>
</div>

I tested the code above using Chrome and JAWS 2022 and it read the whole table using Insert + Down Arrow , including the bottom row.我使用 Chrome 和 JAWS 2022 测试了上面的代码,它使用Insert + Down Arrow读取了整个表格,包括底行。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM