PHP AJAX文件上传文件上传、PHP、AJAX

2023-09-10 18:15:46 作者:玩膩丶ceiling

我已经找遍了计算器和一般的互联网,我无法找到一个简单的AJAX文件上传(只要形成提交)。那些我发现是不够灵活,不适合我的目的。如果我能ajust这个脚本文件上传,这将是巨大的:

i've looked all over stackoverflow and the general internet and i can't find a simple AJAX file uploader (Just form submission). The ones i have found aren't flexible enough and don't fit my purpose. If i could ajust this script to file uploads, that would be great:

<script type="text/javascript">
 function upload(str)
 {
 if (str.length==0)
 { 
document.getElementById("txtHint").innerHTML="";
 return;
  }
 if (window.XMLHttpRequest)
    {// code for IE7+, Firefox, Chrome, Opera, Safari
   xmlhttp=new XMLHttpRequest();
   }
 else
   {// code for IE6, IE5
   xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
   }
 xmlhttp.onreadystatechange=function()
   {
   if (xmlhttp.readyState==4 && xmlhttp.status==200)
     {
     document.getElementById("hint").innerHTML=xmlhttp.responseText;
     }
   }
 xmlhttp.open("GET","ajax/link.php?q="+str,true);
 xmlhttp.send();
 }

在HTML我将不得不

<input type='file' onblur='upload(this.value)'>

感谢

推荐答案

下面是一个简单的Ajax文件上传

Here is a simple ajax file uploader

Uploadify

Uploadify

如果你不想让闪光灯,你可以用这一个;

And if you don't want flash, you may use this one;

AxUploader

AxUploader