Chrome下dhtmlxgrid加载xml报错

今日,在Chorme下调试一个dhtmlxgrid页面,IE6下没有问题,可是在Chorme下始终报错:Incorrect XML

网上查了半天资料无解。

最后将grid.loadxml(xxxxx.xml)里的xml输出看了看,需要把xml文件里无用的空格都要清除掉,一切OK.

也就是说,在Chorme下查看xml输出内容,多余的空格都删掉。

<rows>
<row id="1">
<cell> 1200 </cell>
<cell>aa </cell>
<cell> bb </cell>
</row>
</rows>
能清楚地显示出xml内容就OK了。

你可能感兴趣的:(chrome)