9

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

4

2 回答 2

13

Fiddler是IE中Request Response Debuggin的主要工具...(FireFox中的FireBug)

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

于 2009-07-14T15:37:30.017 回答
0

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

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

在使用 IE 时,我发现这对我有些帮助。但我最喜欢萤火虫;输出很容易检查。

于 2012-05-31T16:24:08.640 回答