获得从JavaScript当前页面的HTTP状态(Get current page http sta

2019-07-19 03:31发布

有没有什么办法让从JavaScript当前网页的HTTP状态?

花了一些时间在网络上搜索,但没有运气可言......好像这是不可能的,但是希望StackOverflow的检查也许一些花哨的解决方法。

(从作为响应身体的一部分是不能接受的服务器提供它,状态被认为是只能通过HTTP标头)

Answer 1:

这是不以任何可能的方式,对不起。



Answer 2:

你只能检查页面加载试的状态中:var X = document.readyState; x的结果可能是:五位一体值:

uninitialized - Has not started loading yet
loading - Is loading
loaded - Has been loaded
interactive - Has loaded enough and the user can interact with it
complete - Fully loaded


Answer 3:

它不是beuatfull,但你可以使用

t = jQuery.get(location.href).success(function (){console.log(t.status)}).error(function(){console.log(t.status)})


文章来源: Get current page http status from javascript