是否可以使用浏览器生成的JavaScript查看待处理的http请求,并对这些请求进行操作?
例如:
<html>
<head>
<script src="http://somehost.io/js/somescript.js"></script>
<link rel="stylesheet" type="text/css" href="/somestyling.css">
</head>
<body>
<div>
Content
</div>
<script>
// Check pending requests here.
</script>
</body>
</html>
鉴于上述HTML,我想看看对远程主机的请求是否耗时太长,如果是,请取消请求;或至少知道请求是否阻止页面完全加载。