问题表和IE

时间:2010-11-01 15:15:06

标签: javascript html xml ajax internet-explorer

我有IE的情况和我从服务器发送给它的XML文档插入的表,我不明白为什么我不能在IE中看到该表,但在其他浏览器中我可以。

<element id='addCSS' name='reply'>
 <div id='appendCSS' main='true' father='@style_div'>
<table border='1' width="100%" >
    <col align="left" />
            <col align="left" />
            <tr>
       <th>CSS</th>
       <th>Seleccionar</th>
    </tr>
</table>
    <button id='updateCSS' father='@appendCSS'>Ok</button>
 </div></element>

我从元素中提取div并将其附加到另一个区域,但我看不到该表。这只发生在一张桌子上,其他一切都很好。

4 个答案:

答案 0 :(得分:1)

html看起来很好,并在我的IE版本中显示。也许问题出在提取和插入它的JavaScript上。你能发帖吗?最好显示所有重现问题的代码的示例。

答案 1 :(得分:1)

我将你的代码插入IE7并且工作正常 - 显示表格。

您可能还有其他一些破坏代码的东西,IE无法正常工作。

答案 2 :(得分:-1)

IE需要<tbody>代码

答案 3 :(得分:-1)

IE表格式是

<table>
  <tr>
    <td></td>
    <td></td>
  </tr>
  <tr>
    <td></td>
    <td></td>
  </tr>
</table>

这将创建一个2行,2列表。