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


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

PHP->isset($_FILES['file'])

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

4

2 回答 2

7

使用 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

于 2013-08-08T13:37:04.283 回答
0

Just submit the form!

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

For AJAX Upload read this answer

于 2013-08-08T13:33:28.263 回答