Disable the debugger statement through the browser

前端 未结 3 1606
既然无缘
既然无缘 2020-12-19 04:51

I am trying to style a piece of code that has the debugger keyword in it. I am using the debugging window(IE, FF, Opera) to see CSS style effects but the debugg

3条回答
  •  情话喂你
    2020-12-19 05:27

    You should delete the debugger when it's not being used. It should only be used in the lines of code you are currently testing.... There's no reason to have it in your code when you're not testing the code directly before or after the debugger.

提交回复
热议问题