开发者

Ajax Upload error

开发者 https://www.devze.com 2023-04-10 17:48 出处:网络
This file index <form name=\"classupload\" method=\"post\"enctype=\"multipart/form-data\" action=\"\">

This file index

 <form name="classupload" method="post"  enctype="multipart/form-data" action="">
      <h3>Select pictures:&nbsp;</h3><br />
      <input type="file" name="Filedata[]" style="margin-top:2px;"/><br />
      <input type="file" name="Filedata[]" style="margin-top:2px;"/><br />

      <input type="file" name="Filedata[]" style="margin-top:2px;"/><br />
      <input type="file" name="Filedata[]" style="margin-top:2px;"/><br />
      <input type="file" name="Filedata[]" style="margin-top:2px;"/><br />
       <div id="viac"></div>
         <div style="margin-top:4px;"><a onclick="multiupload();">More</a><br /></div>
        <input type="submit" value="Upload" id="classupload"/>
      </form>

And file javascript

jQuery(document).ready(function() { 
$("#classupload").click(function() {
        var xleng=document.classupload.elements['Filedata[]'].length;
        dv = document.createElement("div");
        for (v开发者_StackOverflow社区ar i = 0; i < xleng ; i++)
        {
            img=document.classupload.elements['Filedata[]'][i].value;
            if(img.toString().length > 1){
                $.ajax({
                    type: "POST",
                    url: "upload.php",
                    data: img,
                    success: function(data_response) {
                        dv.innerHTML = i + ' - ' + data_response;
                    }
                });
            }
        }
        responseStatus("Done!");
        document.getElementById("result").appendChild(dv);

        return false; // avoid to execute the actual submit of the form.


    })

}); 

And file upload.php

    if ($_REQUEST['Filedata']) {

}

Please help me write file upload.php display file because Instead of the file being uploaded, I get nothing ,Please HELP ?


You can't upload files via AJAX directly. You need a plug-in that uses a hidden Iframe or makes use of HTML5 features.

0

精彩评论

暂无评论...
验证码 换一张
取 消