$.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,我该怎么做?
答案 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();
答案 1 :(得分:0)