Ajax上传错误

发布于 2024-12-08 11:59:56 字数 1919 浏览 0 评论 0原文

这个文件索引

 <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>

和文件 javascript

jQuery(document).ready(function() { 
$("#classupload").click(function() {
        var xleng=document.classupload.elements['Filedata[]'].length;
        dv = document.createElement("div");
        for (var 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.


    })

}); 

和文件 upload.php

    if ($_REQUEST['Filedata']) {

}

请帮我写文件 upload.php 显示文件 因为我什么也没得到,而不是上传文件,请帮忙?

This file index

 <form name="classupload" method="post"  enctype="multipart/form-data" action="">
      <h3>Select pictures: </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 (var 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 ?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

绾颜 2024-12-15 11:59:57

您无法直接通过 AJAX 上传文件。您需要一个使用隐藏 Iframe 或利用 HTML5 功能的插件。

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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文