我知道有人问过,但这在 IE6 (winxp) 中很奇怪。
JS 代码在某些时候崩溃:
var result = ....
if(result==200) <-- this is the reported error in IE6, something at line 62 char 5
它在最新的 Chrome、Firefox 等中运行良好。
你能告诉我一些 IE6 的工具,比如 FireBug 插件(或其他东西)来捕捉这个吗?
我知道有人问过,但这在 IE6 (winxp) 中很奇怪。
JS 代码在某些时候崩溃:
var result = ....
if(result==200) <-- this is the reported error in IE6, something at line 62 char 5
它在最新的 Chrome、Firefox 等中运行良好。
你能告诉我一些 IE6 的工具,比如 FireBug 插件(或其他东西)来捕捉这个吗?
也许这可以帮助你:https ://getfirebug.com/firebuglite
它是 javascript 中的 firebug 克隆,与 IE6 兼容。
从文档中,关于如何安装它:
<!-- Include the following code at the top of the <head> of your page -->
<script type="text/javascript" src="https://getfirebug.com/firebug-lite.js"></script>
编辑:发现不支持调试javascript代码。无论如何,就像有人已经对你说过的评论一样,看看这个答案:在 IE6 中调试 JavaScript。