第 1 步:创建 HTML 页面以放置 HTML 代码。
第2步:在HTML代码页面底部(页脚)创建Javascript:并将Jquery代码放入Script标签中。
第3步:创建PHP文件和php代码拷贝过去。在 $.ajax 代码 url 中的 Jquery 代码之后,将哪一个应用于您的 php 文件名。
JS
//$(document).on("change", "#avatar", function() { // If you want to upload without a submit button
$(document).on("click", "#upload", function() {
var file_data = $("#avatar").prop("files")[0]; // Getting the properties of file from file field
var form_data = new FormData(); // Creating object of FormData class
form_data.append("file", file_data) // Appending parameter named file with properties of file_field to form_data
form_data.append("user_id", 123) // Adding extra parameters to form_data
$.ajax({
url: "/upload_avatar", // Upload Script
dataType: 'script',
cache: false,
contentType: false,
processData: false,
data: form_data, // Setting the data attribute of ajax with file_data
type: 'post',
success: function(data) {
// Do something after Ajax completes
}
});
});
HTML
<input id="avatar" type="file" name="avatar" />
<button id="upload" value="Upload" />
PHP
print_r($_FILES);
print_r($_POST);