Can I “step over” just jQuery code while debugging?

后端 未结 5 1092
陌清茗
陌清茗 2021-01-31 17:27

While stepping through a script that uses jQuery, I just want to test the code I wrote. I don\'t want to step into the jQuery file -- I\'m not

5条回答
  •  名媛妹妹
    2021-01-31 18:32

    At least Firebug's JavaScript debugger has an option to "step over" which still does not descend into function calls.

    However, you will have to choose between "step (into)" and "step over" manually depending on what kind of function is being called.

提交回复
热议问题