jQuery傳遞資料同時上傳檔案到php背景問題

來源:互聯網
上載者:User
關鍵字 php 資料 jquery
php資料jquery

各位大神們好,我是一名學生正在自學編程,一段手機上傳圖片程式如下:
1.前端有一個上傳框,上傳圖片後會自動產生預覽圖
2.如下程式是部分js檔案,一些無關的代碼已經刪掉了,
3.後台post.php頁面用post方法或者file方法都收不到上傳的檔案,text文本資料可以收到
4.前端有獲得 $("#picture").val() 的代碼,我這個js是不是沒有把檔案傳成功啊?少了點什麼呢? 預覽圖可以正常產生!求大神們指點一二,小弟感激不盡!

 function postTopic(){    var cid = $('#cid').val();    if( parseInt(cid) < 1 )    {        alert("請選擇分類");        $('#cid').focus();        return false;    }    var msg = $.trim($('textarea[name=message]').val());    if( msg.length > 500 )    {        $('textarea[name=message]').focus();        return false;    }    var picture = "";    if( $("#picture").val() == "" )    {        if( msg.length < 1 )        {            $('textarea[name=message]').focus();            return false;        }    }    else    {        picture = $("#previewImg").attr("src");    }    $(".loading").show();    $("#add-topic-form").hide();    $.post("post.php",{"do":"addTopic","cid":cid,"msg":msg,"picture":$("#picture").val()},function(data)    {     if (data.result == "success")    {        //無關代碼    },"json");    return false;}
  • 相關文章

    聯繫我們

    該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

    如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

    A Free Trial That Lets You Build Big!

    Start building with 50+ products and up to 12 months usage for Elastic Compute Service

    • Sales Support

      1 on 1 presale consultation

    • After-Sales Support

      24/7 Technical Support 6 Free Tickets per Quarter Faster Response

    • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.