我正在使用此代码检查文件是否存在,该参数采用字符串作为参数:
function UrlExists(url){
var http = new XMLHttpRequest();
http.open('HEAD', url, false);
http.send();
return http.status!=404;
}
然后在我的目录中:
main_folder
script_folder
script.js
page_folder
page.php
index.php
我的代码在script.js
中
测试用例:alert(UrlExists('../index.php'));
返回true
测试用例:alert(UrlExists('../page_folder/page.php'));
返回false
我应该如何降低2级?