IE8 XmlHttpRequest 调试

发布于 2024-07-27 03:29:30 字数 238 浏览 8 评论 0原文

我正在寻找一些方法来优雅地检查 IE8 中的 XmlHttpRequests。 我不介意插件或外部程序。 我还没有找到任何与 Firebug 几乎一样有效的东西。

我已经尝试过 Julien Couvreur 的书签调试器,但它似乎不适用于 Prototype。 朱利安的脚本

I am looking for some way to elegantly inspect XmlHttpRequests in IE8. I wouldn't mind a plugin or an external program. I have yet to find anything that works nearly as well as Firebug.

I have already tried Julien Couvreur's bookmark debugger, but it did not seem to work with Prototype. Julien's Script

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

苍风燃霜 2024-08-03 03:29:30

Fiddler 是 IE 中请求响应调试的主要工具...(FireFox 中的 FireBug)

http://www.fiddler2 .com/fiddler2/

Fiddler is the main tool for Request Response Debuggin in IE... ( FireBug in FireFox )

http://www.fiddler2.com/fiddler2/

盗梦空间 2024-08-03 03:29:30

为什么不检索输出并直接写入控制台? 例如,如果使用 jQuery $.post:

$.post("posturl", data, function(output){
     console.log(output);
}

我发现这在使用 IE 时对我来说有点用。 但我最喜欢 Firebug; 输出很容易检查。

Why don't you retrieve the output, and write to the console directly? For example, if using a jQuery $.post:

$.post("posturl", data, function(output){
     console.log(output);
}

I found this worked somewhat for me while working with IE. But I like firebug best for this; the output is easy to inspect.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文