久久久久久久av_日韩在线中文_看一级毛片视频_日本精品二区_成人深夜福利视频_武道仙尊动漫在线观看

  • <small id='VY2gF'></small><noframes id='VY2gF'>

    <tfoot id='VY2gF'></tfoot>
      • <bdo id='VY2gF'></bdo><ul id='VY2gF'></ul>
    1. <legend id='VY2gF'><style id='VY2gF'><dir id='VY2gF'><q id='VY2gF'></q></dir></style></legend>
        <i id='VY2gF'><tr id='VY2gF'><dt id='VY2gF'><q id='VY2gF'><span id='VY2gF'><b id='VY2gF'><form id='VY2gF'><ins id='VY2gF'></ins><ul id='VY2gF'></ul><sub id='VY2gF'></sub></form><legend id='VY2gF'></legend><bdo id='VY2gF'><pre id='VY2gF'><center id='VY2gF'></center></pre></bdo></b><th id='VY2gF'></th></span></q></dt></tr></i><div class="qwawimqqmiuu" id='VY2gF'><tfoot id='VY2gF'></tfoot><dl id='VY2gF'><fieldset id='VY2gF'></fieldset></dl></div>

        如何通過 Jquery/AJAX 上傳文件

        How to upload file through Jquery/AJAX(如何通過 Jquery/AJAX 上傳文件)
      1. <tfoot id='uWhLG'></tfoot>
        <i id='uWhLG'><tr id='uWhLG'><dt id='uWhLG'><q id='uWhLG'><span id='uWhLG'><b id='uWhLG'><form id='uWhLG'><ins id='uWhLG'></ins><ul id='uWhLG'></ul><sub id='uWhLG'></sub></form><legend id='uWhLG'></legend><bdo id='uWhLG'><pre id='uWhLG'><center id='uWhLG'></center></pre></bdo></b><th id='uWhLG'></th></span></q></dt></tr></i><div class="qwawimqqmiuu" id='uWhLG'><tfoot id='uWhLG'></tfoot><dl id='uWhLG'><fieldset id='uWhLG'></fieldset></dl></div>

          <small id='uWhLG'></small><noframes id='uWhLG'>

        • <legend id='uWhLG'><style id='uWhLG'><dir id='uWhLG'><q id='uWhLG'></q></dir></style></legend>
            <tbody id='uWhLG'></tbody>

              <bdo id='uWhLG'></bdo><ul id='uWhLG'></ul>

                  本文介紹了如何通過 Jquery/AJAX 上傳文件的處理方法,對大家解決問題具有一定的參考價值,需要的朋友們下面隨著小編來一起學習吧!

                  問題描述

                  限時送ChatGPT賬號..

                  我目前正在使用以下代碼通過 AJAX 發布我的表單:

                  I am currently POSTING my form through AJAX with the following code:

                  $(document).ready(function(){
                      $("form#createForm").submit(function() { // loginForm is submitted
                          $("form#createForm input#createForm_submit").attr('disabled','disabled');
                  
                          tinyMCE.triggerSave();
                  
                          $.ajax({
                              type: "POST",
                              dataType: "json",
                              url: "perform", // URL of the Perl script
                              data: $("#createForm").serialize(),
                  
                              // script call was successful 
                              // data contains the JSON values returned by the Perl script 
                              success: function(data){
                  
                                  $('div.form-group').each(function(){
                                      $(this).removeClass('has-error');
                                  });
                  
                                  if (data.error) { // script returned error
                                      var myList = $('ul.msg-list').empty();
                  
                                      $.each(data.msg, function(key,item) {
                                          $("div."+key).addClass('has-error');
                                          $('<li>').text(item.errtxt).appendTo(myList);
                                      });
                  
                  
                                      $('div#create_createresult').html('some error').html(myList);
                                      $('div#create_createresult').addClass("text-danger");
                  
                                      $("form#createForm input#createForm_submit").removeAttr('disabled');
                                  } // if
                                  else 
                                  { // login was successful
                                      //$('form#login_loginform').hide();
                                      $('div#create_createresult').text(data.msg);
                                      $('div#create_createresult').addClass("success");
                  
                                  } //else
                              } // success
                          }); // ajax
                          $('div#login_loginresult').fadeIn();
                          return false;
                      });
                  });
                  

                  現在我想添加以相同形式上傳圖片的可能性,并在此 JQUERY 和相同的服務器端腳本中實現它.我唯一的問題是,我不知道該怎么做.. 我已經測試了上面的內容,我發現它沒有將 $_FILES 變量傳遞給我的服務器端腳本.

                  Now I want to add the posibility of uploading a picture in the same form and just implement it in this JQUERY and in the same server-side script. My only problem is, I don't know how to do it.. I have tested the above, and I find, that it doesn't pass the $_FILES-variable to my server side script.

                  任何人都可以在我需要做的任何方向上引導我使用此腳本添加圖像上傳的可能性嗎?

                  Can anyone lead me in any direction of, what I need to do, to add the possibility of image upload with this script?

                  推薦答案

                  嘗試使用這個.

                  // grab your file object from a file input
                  $('#fileInput').change(function () {
                    sendFile(this.files[0]);
                  });
                  
                  // can also be from a drag-from-desktop drop
                  $('dropZone')[0].ondrop = function (e) {
                    e.preventDefault();
                    sendFile(e.dataTransfer.files[0]);
                  };
                  
                  function sendFile(file) {
                    $.ajax({
                      type: 'post',
                      url: '/targeturl?name=' + file.name,
                      data: file,
                      success: function () {
                        // do something
                      },
                      xhrFields: {
                        // add listener to XMLHTTPRequest object directly for progress (jquery doesn't have this yet)
                        onprogress: function (progress) {
                          // calculate upload progress
                          var percentage = Math.floor((progress.total / progress.totalSize) * 100);
                          // log upload progress to console
                          console.log('progress', percentage);
                          if (percentage === 100) {
                            console.log('DONE!');
                          }
                        }
                      },
                      processData: false,
                      contentType: file.type
                    });
                  }
                  

                  這篇關于如何通過 Jquery/AJAX 上傳文件的文章就介紹到這了,希望我們推薦的答案對大家有所幫助,也希望大家多多支持html5模板網!

                  【網站聲明】本站部分內容來源于互聯網,旨在幫助大家更快的解決問題,如果有圖片或者內容侵犯了您的權益,請聯系我們刪除處理,感謝您的支持!

                  相關文檔推薦

                  enable SOAP on PHP(在 PHP 上啟用 SOAP)
                  Get received XML from PHP SOAP Server(從 PHP SOAP 服務器獲取接收到的 XML)
                  not a valid AllXsd value(不是有效的 AllXsd 值)
                  PHP SoapClient: SoapFault exception Could not connect to host(PHP SoapClient:SoapFault 異常無法連接到主機)
                  Implementation of P_SHA1 algorithm in PHP(PHP中P_SHA1算法的實現)
                  Sending a byte array from PHP to WCF(將字節數組從 PHP 發送到 WCF)

                      <tbody id='S9yto'></tbody>
                    • <small id='S9yto'></small><noframes id='S9yto'>

                        <legend id='S9yto'><style id='S9yto'><dir id='S9yto'><q id='S9yto'></q></dir></style></legend>
                      1. <i id='S9yto'><tr id='S9yto'><dt id='S9yto'><q id='S9yto'><span id='S9yto'><b id='S9yto'><form id='S9yto'><ins id='S9yto'></ins><ul id='S9yto'></ul><sub id='S9yto'></sub></form><legend id='S9yto'></legend><bdo id='S9yto'><pre id='S9yto'><center id='S9yto'></center></pre></bdo></b><th id='S9yto'></th></span></q></dt></tr></i><div class="qwawimqqmiuu" id='S9yto'><tfoot id='S9yto'></tfoot><dl id='S9yto'><fieldset id='S9yto'></fieldset></dl></div>

                          <tfoot id='S9yto'></tfoot>

                            <bdo id='S9yto'></bdo><ul id='S9yto'></ul>

                          • 主站蜘蛛池模板: 欧美精品久久久 | 国产性色视频 | 欧美日韩在线一区二区三区 | 亚洲精品中文字幕在线 | 日韩欧美三级电影 | 99久9| 久久久久久国产精品 | 精品国产一区二区三区四区在线 | 亚洲欧美日韩精品久久亚洲区 | 亚洲视频一区二区三区 | 亚洲精品乱码久久久久久蜜桃91 | 日韩一区二区三区精品 | 中文字幕99 | 国产精品久久久久久久久久久久冷 | 毛片免费观看 | hdfreexxxx中国妞 | 欧美综合国产精品久久丁香 | 国产乱码精品一区二区三区忘忧草 | 日韩高清成人 | 九九热在线观看 | 成在线人视频免费视频 | 亚洲精品一| 国产片一区二区三区 | 欧美午夜一区 | 免费观看色 | 欧美激情一区二区三区 | 久久久婷婷| 国产精品高 | 99久久久久久99国产精品免 | 国产一区二区三区在线免费 | 欧美一级免费看 | 欧美性受xxxx白人性爽 | 久久er精品 | 一区二区中文字幕 | 97国产在线观看 | 国产人成精品一区二区三 | 国产剧情久久 | 日本不卡在线观看 | 久久久精彩视频 | 国产精品美女一区二区 | 免费色网址 |