实现ajax上传,想知道如何在我的代码中实现它...我搜索了许多上传者不知道如何在我的代码中实现它。
$('#message_form')。html('个人资料信息编辑'+ '' + '' + '名字:'+ '姓氏:'+ '电子邮件:'+ '照片:'+ '' + '' + '吉布斯拥有:'+ “” );
MessageWindow.show();
$(".cancel").click(function() {
MessageWindow.hide();
});
$(".submit").click(function() {
ajaxFileUpload();
var dataString = $("#myform").serialize();
$.ajax({
type: "POST",
url: YAPI.baseUrl+"updateuser.php",
data: dataString,
success: function(data){
response = eval('('+data+')');
alert(response.message);
YAPI.execute({command:'getuser',userid:App.currentUser.getData('userid')},
function(response,data){
//App.currentUser.setData();
}
);
MessageWindow.hide();
}
});
return false;
});
答案 0 :(得分:0)
如果可能的话,尝试使用像Uploadify这样的jQuery插件。另外,请查看此信息以获取更多信息:
Asynchronous file upload (AJAX file upload) using jsp and javascript