在 IE 开发工具控制台中显示对象
我正在 Firefox、Chrome 和 Internet Explorer 中调试我的 Web 应用程序。对于后者,我使用开发人员工具来调试我的脚本。
我遇到的问题是,当我在 console 窗口中编写一些表达式并且它应该返回一个对象时,我所能看到的只是一个简单的 {...}
,它不是真的没什么帮助。
是否可以使其工作类似于实际显示对象内容的 Firebug 或 Chrome 控制台。 Chrome 在这方面是最好的,因为你可以像在 Visual Studio 中一样直接遍历整个对象。
反正。是否可以使 IE 开发工具控制台显示对象属性及其值?
I'm debugging my web application in Firefox, Chrome and Internet Explorer. With the latter I'm using Developer Tools to debug my scripts.
The problem I'm having is that when I write some expression in console window and it should return an object all I can see is a simple {...}
which isn't really helpful.
Is it possible to make it work similar to Firebug or Chrome console that actually display object content. Chrome is the best in this regard, because you can directly traverse the whole object as in Visual Studio.
Anyway. Is it possible to make IE Developer Tools console to display object properties and their values?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
发布评论
评论(8)
在 IE 中探索对象的属性和值 您必须首先:
- 设置断点(或启用脚本调试)
- 触发断点(或遇到错误)
本地 选项卡具有本地可用的属性和详细信息断点被触发的时间
将对象名称添加到监视选项卡,您可以查看指定对象的属性和详细信息
我们在 Microsoft 的“朋友”有 描述 IE 开发人员工具的视频。在 3:03 时,他们提到了这种探索物体的“简单”方法。
如果 Prototype API 是一个选项,您可以像这样调试您的对象
var obj = window.JSON.parse('{"d":"2010-01-01T12:34:56Z","i":123}');
alert($H(obj).inspect());
:除此之外,我知道没有其他方法可以不获得真正有用的 {...}
。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
我使用内置的 JSON 对象。
I use the built in JSON object.