Rumah > Artikel > hujung hadapan web > jquery如何判断文件是否存在
jquery判断文件是否存在的方法:首先封装一个fileExists方法,接收url参数;然后使用【$.ajax()】方法发送请求,设置同步方式请求;最后返回请求结果。
本教程操作环境:windows7系统、jquery3.2.1版,该方法适用于所有品牌电脑。
相关推荐:《jQuery视频教程》
jquery判断文件是否存在的方法:
js或jquery判断文件是否存在,需要用到ajax
步骤:
1、封装一个fileExists方法,接收url参数;
2、使用$.ajax()
方法发送请求,设置同步方式请求;
3、返回请求结果。
function fileExists(url) { var isExists; $.ajax({ url: url, async: false, type: 'HEAD', error: function () { isExists = 0; }, success: function () { isExists = 1; } }); if (isExists == 1) { return true; } else { return false; } }
用法
var Exists=Exists('/cache/view_num/' + uid + '.txt'); if(Exists){ alert('存在') }
更多编程相关知识,请访问:编程学习!!
Atas ialah kandungan terperinci jquery如何判断文件是否存在. Untuk maklumat lanjut, sila ikut artikel berkaitan lain di laman web China PHP!