Warning: file_get_contents(/data/phpspider/zhask/data//catemap/3/html/86.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Html 第508节,龙可读表_Html_Html Table_Section508 - Fatal编程技术网

Html 第508节,龙可读表

Html 第508节,龙可读表,html,html-table,section508,Html,Html Table,Section508,有人知道如何使下表可读吗? 这是一个表,其中的行数为rowspan=2 也许我把标题放错地方了。数字是一行的键 现有的表结构是否符合508标准,或者我是否需要其他内容 <table class="fullpage_brdr1"; id="complextable"?; summary="Currently Open"; style="text-align: center";> <thead> <tr bgcol

有人知道如何使下表可读吗? 这是一个表,其中的行数为rowspan=2

也许我把标题放错地方了。数字是一行的键

现有的表结构是否符合508标准,或者我是否需要其他内容

    <table class="fullpage_brdr1"; id="complextable"?; summary="Currently Open"; style="text-align: center";>
    <thead>
                    <tr bgcolor="Gray"; class="sortLinks">
                        <th id ="h1" ?>
                            A
                        </th>
                         <th id = "h2" ?>
                            B
                        </th>
                         <th id = "h3" ?>
                            Region
                        </th>
                          <th id = "h4" ?>
                            C
                        </th>
                          <th id = "h5" ?>
                            D
                        </th>
                         <th id = "h6" ?>
                            E
                        </th>
                         <th id = "h7" ?>
                            F
                        </th>
                         <th id = "h8" ?>
                            G
                        </th>
                         <th id = "h9" ?>
                            H
                        </th>
                         <th id = "h10" ?>
                            I
                        </th>
                    </tr>
          </thead>          
                    <tbody title = "row">
                    <tr>
                        <td rowspan="2"; id="number">
                            999999999
                        </td>
                        <td rowspan="2">
                            Storage A
                        </td>
                        <td rowspan="2">
                            Boston
                        </td>

            <th id="expected"> Expected </th>

                            <th headers="number expected h5"> 50 </th>
                            <th headers="number expected h6"> 6,000 </th>
                            <th headers="number expected h7"> 5,000 </th>
                            <th headers="number expected h8"> $25,000 </th>


                            <td rowspan="2">
                            Partially Complete
                        </td>
                        <td rowspan="2">
                            This is test section for Remarks
                        </td>

                            <tr>           
                             <th id="processed"> Processed </th>
                            <th headers="EIN processed h5"> 50 </th>
                            <th headers="EIN processed h6"> 3,000 </th>
                            <th headers="EIN processed h7"> 4,000 </th>
                            <th headers="EIN processed h8"> $20,000 </th>




                            </tr>
                        <tr>
                        <td rowspan="2"; id="number">
                            111111111
                        </td>
                        <td rowspan="2">
                            Storage B
                        </td>
                        <td rowspan="2">
                            Boston
                        </td>

            <th id="expected"> <a href="http://www.google.com">Expected</a> </th>

                            <th headers="number expected h5"> 70 </th>
                            <th headers="number expected h6"> 5,000 </th>
                            <th headers="number expected h7"> 5,000 </th>
                            <th headers="number expected h8"> $35,000 </th>



                        <td rowspan="2">
                            Partially Complete
                        </td>
                        <td rowspan="2">
                            This is test section for Remarks
                        </td>

                            <tr>           
                             <th id="processed"> <a href="http://www.google.com">Processed</a> </th>
                            <th headers="number processed h5"> 50 </th>
                            <th headers="number processed h6"> 2,000 </th>
                            <th headers="number processed h7"> 5,000 </th>
                            <th headers="number processed h8"> $40,000 </th>
                            </tr>
                </tbody>
     </table>

A.
B
区域
C
D
E
F
G
H
我
999999999
存储A
波士顿
预期
50
6,000 
5,000 
$25,000 
部分完成
这是备注的测试部分
处理
50
3,000 
4,000 
$20,000 
111111111
仓库B
波士顿
70
5,000 
5,000 
$35,000 
部分完成
这是备注的测试部分
50
2,000 
5,000 
$40,000 

你有太多的
,这是问题的一半。一些辅助技术不喜欢合并的单元格(rowspan和colspan)

尝试:


A.
B
区域
C
D
E
F
G
H
我
999999999
存储A
波士顿
预期
50
6,000 
5,000 
$25,000 
部分完成
这是备注的测试部分
处理
50
3,000 
4,000 
$20,000 
111111111
仓库B
波士顿
70
5,000 
5,000 
$35,000 
部分完成
这是备注的测试部分
50
2,000 
5,000 
$40,000 

您的标记非常错误(HTML中没有分号和问号)。与其他注释和答案一样,首先您需要修复表的HTML,使其正确构造。
<table class="fullpage_brdr1" id="complextable" summary="Currently Open" style="text-align: center">
<thead>
  <tr bgcolor="Gray" class="sortLinks">
    <th id ="h1"> A </th>
    <th id = "h2"> B </th>
    <th id = "h3"> Region </th>
    <th id = "h4"> C </th>
    <th id = "h5"> D </th>
    <th id = "h6"> E </th>
    <th id = "h7"> F </th>
    <th id = "h8"> G </th>
    <th id = "h9"> H </th>
    <th id = "h10"> I </th>
  </tr>
</thead>
<tbody>
  <tr>
    <td rowspan="2" id="number"> 999999999 </td>
    <td rowspan="2"> Storage A </td>
    <td rowspan="2"> Boston </td>
    <th id="expected"> Expected </th>
    <td headers="number expected h5"> 50 </td>
    <td headers="number expected h6"> 6,000 </td>
    <td headers="number expected h7"> 5,000 </td>
    <td headers="number expected h8"> $25,000 </td>
    <td rowspan="2"> Partially Complete </td>
    <td rowspan="2"> This is test section for Remarks </td>
  </tr>
  <tr>
    <th id="processed"> Processed </th>
    <td headers="EIN processed h5"> 50 </td>
    <td headers="EIN processed h6"> 3,000 </td>
    <td headers="EIN processed h7"> 4,000 </td>
    <td headers="EIN processed h8"> $20,000 </td>
  </tr>
  <tr>
    <td rowspan="2"; id="number"> 111111111 </td>
    <td rowspan="2"> Storage B </td>
    <td rowspan="2"> Boston </td>
    <th id="expected"> <a href="http://www.google.com">Expected</a> </th>
    <td headers="number expected h5"> 70 </td>
    <td headers="number expected h6"> 5,000 </td>
    <td headers="number expected h7"> 5,000 </td>
    <td headers="number expected h8"> $35,000 </td>
    <td rowspan="2"> Partially Complete </td>
    <td rowspan="2"> This is test section for Remarks </td>
  </tr>
  <tr>
    <th id="processed"> <a href="http://www.google.com">Processed</a> </th>
    <td headers="number processed h5"> 50 </td>
    <td headers="number processed h6"> 2,000 </td>
    <td headers="number processed h7"> 5,000 </td>
    <td headers="number processed h8"> $40,000 </td>
  </tr>
</tbody>
</table>