gpt4 book ai didi

javascript - 使用javascript检查url内容类型

转载 作者:塔克拉玛干 更新时间:2023-11-02 22:47:12 25 4
gpt4 key购买 nike

为了节省服务器资源,我正在寻找一种使用 javascript 检索给定 url 的内容类型的方法。它不应该只从 url 下载标题的完整内容。这可能与 javascript 的限制有关。

最佳答案

使用 head 请求进行 Ajax 调用。

var url = window.location.href;
var xhttp = new XMLHttpRequest();
xhttp.open('HEAD', url);
xhttp.onreadystatechange = function () {
if (this.readyState == this.DONE) {
console.log(this.status);
console.log(this.getResponseHeader("Content-Type"));
}
};
xhttp.send();

关于javascript - 使用javascript检查url内容类型,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24050112/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com