Displaying objects in IE Developer Tools console

前端 未结 8 922
野的像风
野的像风 2020-12-29 04:31

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 i

8条回答
  •  感情败类
    2020-12-29 04:55

    To explore an object's properties and values in IE you must first:

    • Have a breakpoint set (or script debugging enabled)
    • Trigger the breakpoint (or encounter an error)

    The locals tab has the properties and details locally available at the time the breakpoint was triggered Adding an object name to the watch tab you can view the properties and details of the named object

    Our "friends" at Microsoft have a video describing IE's developer tool. At 3:03 is when they mention this "easy" way to explore objects.

提交回复
热议问题