Google AJAXSLT 的下载地址:http://sourceforge.net/project/showfiles.php?group_id=140999
其中的例子在IE6中不能正常显示,在网上找了一个解决方法。
1、把例子中所有的<script ... />改为<script ...></script>
2、打开dom.js文件修改function xmlParse(xml)方法,修改如下:
        原:for (var i = 1; i < x.length; ++i)
        现:for (var i = 0; i < x.length -1; ++i)
这样修改后test-xslt.html就运行正常了,但是test-xpath.html运行的时候总是发出[object Error]

相关文章:

  • 2021-10-13
  • 2021-06-25
  • 2021-06-15
  • 2022-12-23
  • 2021-06-14
  • 2022-12-23
  • 2021-11-08
猜你喜欢
  • 2021-07-22
  • 2021-09-25
  • 2021-12-23
  • 2021-07-21
  • 2022-12-23
  • 2021-06-23
相关资源
相似解决方案