Can I tell the Chrome script debugger to ignore jquery.js?

后端 未结 6 782
一向
一向 2020-12-13 23:03

Is there a way to tell the Chrome debugger (or maybe Firebug?) to not break within certain files? To assume they\'re not broken, essentially? This seems like something they

6条回答
  •  既然无缘
    2020-12-13 23:21

    If the issue you're having is that the Chrome debugger is stopping on all exceptions, even the ones inside of jQuery, then you may need to tell Chrome to only pause on uncaught exceptions, not all exceptions. When in the Script panel in the debugger, there is an icon in the lower left corner of the window that controls this.

提交回复
热议问题