How do I dump JavaScript vars in IE8?

后端 未结 11 681
既然无缘
既然无缘 2020-12-02 08:04

I have an object I need to examine in IE8. I tried the developer tools and console.log, their Firebug equivalent. However, when I output the object to the log:<

11条回答
  •  醉酒成梦
    2020-12-02 08:51

    Here's one technique that I've found helpful:

    • Open the Developer Tool Bar (hit F12)
    • Go to the "Script" tab
    • Click the "Start Debugging" button
    • Next, type "debugger" into the console and hit enter. This should trigger a break point.
    • Go to the "Watch" sub-tab
    • Click the row that says, "Click to add..." and enter a variable you'd like to examine. Note that the variable must be globally available.
    • At this point you should be able to examine your variable with tree-like UI
    • Once you're done debugging click Continue button (or hit F5)

提交回复
热议问题