当前位置: 首页 > 工具软件 > AJAXSLT > 使用案例 >

Google AJAXSLT 的一个bug修正

宋铭
2023-12-01

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]

转载于:https://www.cnblogs.com/BillChen/archive/2005/09/03/229255.html

 类似资料: