Breakpoint right before page refresh?

前端 未结 2 1767
傲寒
傲寒 2021-02-11 21:59

I\'m debugging some 3rd-party minified Javascript that somewhere is triggering a browser page refresh. However, I can\'t figure out what part of the code is causing the refresh.

2条回答
  •  死守一世寂寞
    2021-02-11 22:57

    Try this:

    1. Open your Chrome Dev Tools
    2. Navigate to the "Sources" tab
    3. On the right panel, expand "Event Listener Breakpoints"
    4. Expand the "Load" tree
    5. Check the beforeunload and unload options

    See if that helps; screenshot below.

    Edit: Alternately, if that doesn't work, you can use Chrome to search all loaded scripts for the code that might be responsible. There's apparently a lot of ways to refresh the page with JavaScript but they mostly have a few common strings like "navigator", "location", "reload", "window".

    Finally, if there's a link to the same page you are on, it's possible some JS is triggering a click on it-- unlikely, but worth exploring if nothing else has worked thus far...

    (Please excuse the formatting as I'm on mobile...)

    NOTE: It seems occasionally, for reasons I don't yet fully understand, this solution fails to actually cause the debugger to pause; in this situation, I found that thorn̈'s answer to this question did the trick for me.

提交回复
热议问题