显示的错误是:
htmlfile:unknown runtime error

解决方案 »

  1.   

    是不是  _xmlhttp  没获取到啊, IE 和 FF  新建它的方法是不一样的
      

  2.   

    _xmlhttp不能用"_",用xmlhttp试试
      

  3.   

    _xmlhttp获取到了,是我自己定义的时候加了一个"_"
      

  4.   

    可能你的list是这样的 
    <p id="list"></p>
    而你返回的代码含有区块类标签 如 div 
    这样ie就会报错,其他浏览器没问题
    据说是ie的bug
      

  5.   

    list的结构是这样的:
    <table id="composer_list">
      <colgroup></colgroup>
      <colgroup></colgroup>
      <colgroup></colgroup>
      <colgroup></colgroup>
      <colgroup></colgroup>
      <colgroup></colgroup>
      <colgroup></colgroup>
      <colgroup></colgroup>
      <thead>
        <tr>
          
        </tr>
      </thead>
      <tfoot>
        <tr>
          
        </tr>
      </tfoot>
      <tbody>
        <tr>
          
        </tr>
        <tr>
         
        </tr>
      </tbody>
    </table>
      

  6.   

    我搞定了,用outerHTML就可以了,还是很感谢你.