如何使用JQuery post方法

时间:2013-08-08 13:28:38

标签: jquery

$.post('image.php', {
    image:form.image.value  
}


<form id="form" enctype="multipart/form-data">
<input type="file" id="image" name="image"/>

PHP-&GT; isset($_FILES['file'])

如何使用$.post()在表单标记内发布 $_FILES
我还需要包含enctype吗? 或者我需要使用AJAX,我该怎么做?

2 个答案:

答案 0 :(得分:6)

使用jQuery表单插件向AJAX提交带有文件的表单。 http://malsup.com/jquery/form/

在JS中

$('#form').ajaxSubmit({
 success: function(response) {
  console.log(response);
 } 
});
PHP中的

// after doing upload work etc

header('Content-type: text/json');
echo json_encode(['message' => 'Some message or param whatever']);
die();

完整的文档和示例:http://malsup.com/jquery/form/#ajaxSubmit

答案 1 :(得分:0)

只需submit表单!

$('form#form').submit();

对于AJAX上传阅读this answer