使用 PHP 进行 jQuery AJAX 文件上传
要以最少的设置成功实现文件上传,请按照以下步骤操作:
客户端(jQuery)
$('#upload').on('click', function() { var file_data = $('#sortpicture').prop('files')[0]; var form_data = new FormData(); form_data.append('file', file_data); $.ajax({ url: 'upload.php', // Point to the server-side PHP script dataType: 'text', // Expect text back from the PHP script cache: false, contentType: false, processData: false, data: form_data, type: 'post', success: function(php_script_response) { alert(php_script_response); // Display any response from the PHP script } }); });
服务器端 (PHP)
<?php if (0 < $_FILES['file']['error']) { echo 'Error: ' . $_FILES['file']['error'] . '<br>'; } else { move_uploaded_file($_FILES['file']['tmp_name'], 'uploads/' . $_FILES['file']['name']); } ?>
附加说明:
以上是如何使用 PHP 实现 jQuery AJAX 文件上传?的详细内容。更多信息请关注PHP中文网其他相关文章!