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