前端之家收集整理的这篇文章主要介绍了
jQuery Ajax File Upload实例源码,
前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
本文实例为大家分享了jQuery Ajax File Upload实例源码,供大家参考,具体内容如下
项目结构
Default.aspx
Upload.aspx
Scripts/…
style.css
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
Box
name: 'uploadfile',onSubmit: function (file,ext) {
if (!(ext && /^(jpg|png|jpeg|gif)$/.test(ext))) {
// check for valid file extension
status.text('Only JPG,PNG or GIF files are allowed');
return false;
}
status.text('Uploading...');
},onComplete: function (file,response) {
//On completion clear the status
status.text('');
//Add uploaded file to list
if (response === "success") {
$('').appendTo('#files').html('
' + file).addClass('success');
} else {
$('').appendTo('#files').text(file).addClass('error');
}
}
});
});
// --></mce:script>