日期:2014-05-17 浏览次数:20763 次
$("#uploadForm").ajaxSubmit({//please submit from
dataType:'json', // result type
beforeSubmit: function() {
alert("开始上传");
},
success: function(data) {
alert("ok");
if(data.succ == 1) {
window.location.href = "uploadSuceece";
} else {
alert(data.errmsg);
window.location.reload();
}
},
error:function(){
alert("出错啦");
}
});
String str = "{\"errmsg\":\"数据上传失败\"}";//这是json的额数据格式