How to use JQuery post method
本问题已经有最佳答案,请猛点这里访问。
1 2 3 4 5 6 7 | $.post('image.php', { image:form.image.value } <form id="form" enctype="multipart/form-data"> <input type="file" id="image" name="image"/> |
PHP
如何使用
使用jquery表单插件Ajax提交带有文件的表单。网址:http://malsup.com/jquery/form/
在JS中
1 2 3 4 5 | $('#form').ajaxSubmit({ success: function(response) { console.log(response); } }); |
在PHP中
1 2 3 4 5 | // 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
只需提交表格!
1 | $('form#form').submit(); |
对于Ajax上载,请阅读此答案