我想检查下面显示的 url 是否可以访问。在 Firefox 上,当页面未运行时请求失败,但也没有显示错误。在 Internet Explorer 上,始终显示“成功”。我该如何解决这个问题,以便也支持 IE?为什么仍然不显示错误?提前致谢!
var link = "http://localhost:8387/nscalemc/";
$.ajax({
type: "GET",
url: link,
crossDomain: true,
dataType: "script",
success: function() {
alert("success")
},
error: function() {
alert("error");
}
})