How to debug Javascript error?

后端 未结 6 1925
囚心锁ツ
囚心锁ツ 2021-01-06 03:07

How to Debug java Script Error Using Firebug?

Duplicate

How can I set breakpoints in an external JS script in Firebug

6条回答
  •  春和景丽
    2021-01-06 03:23

    Use the console.log(yourObject) function to output anything to the firebug console. It is just like running a var_dump and you can view all your objects and their contents. This is very helpful if you want to check on the contents of a particular variable or even a particular DOM object.

    Instead of using cheap alerts - the console.log() function is cleaner and you can see all the outputs neatly in your console pane.

    Note however you need to remove all references to the console.log function when you deploy your website as it would not run in IE.

提交回复
热议问题