如何使用JQuery post方法

这个问题在这里已经有了答案:

  • 我怎样才能异步上传文件? 27个答案

  • 使用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


    只需提交表格!

    $('form#form').submit();
    

    对于AJAX上传阅读此答案

    链接地址: http://www.djcxy.com/p/19607.html

    上一篇: How to use JQuery post method

    下一篇: Send input files data with ajax