gpt4 book ai didi

javascript - 检查文件是否存在于不同的服务器上

转载 作者:塔克拉玛干 更新时间:2023-11-02 21:48:42 24 4
gpt4 key购买 nike

我需要查看文件是否存在于另一台服务器上。所以如果我调用http://www.someotherserver.com/index.html如果页面在那里,则返回 true,如果不存在,则返回 false。我试了一下:

    $.ajax({
type: 'HEAD',
url: 'http://localhost/HTMLPage1.htm',
success: function () {
},
error: function () {
alert("Unable to connect to secure checkout.");
return false;
}
});

但是每次都返回错误。我在想可能是因为跨域脚本。有谁知道如何进行这项工作或有行之有效的方法吗?

谢谢!

最佳答案

只需在您的代码中将crossDomain 设置为true,如下所示:

 $.ajax({
type: 'HEAD',
url: 'http://localhost/HTMLPage1.htm',
crossDomain: true,
success: function () {
},
error: function () {
alert("Unable to connect to secure checkout.");
return false;
}
});

关于javascript - 检查文件是否存在于不同的服务器上,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10342071/

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