What does status=canceled for a resource mean in Chrome Developer Tools?

前端 未结 30 2040
温柔的废话
温柔的废话 2020-11-22 11:13

What would cause a page to be canceled? I have a screenshot of the Chrome Developer Tools.

\"Canceled

30条回答
  •  眼角桃花
    2020-11-22 11:50

    In my case the code to show e-mail client window caused Chrome to stop loading images:

    document.location.href = mailToLink;
    

    moving it to $(window).load(function () {...}) instead of $(function () {...}) helped.

提交回复
热议问题