如何使用javascript读取通过https提供的html页面上的标题

时间:2016-07-26 06:23:28

标签: javascript

如何通过https提供网站标题?我试过了

var req = new XMLHttpRequest();
req.open('GET', document.location, false);
req.send(null);
var headers = req.getAllResponseHeaders().toLowerCase();
alert(headers);

但这对https页面不起作用。

0 个答案:

没有答案