PHP AJAX文件上传

我在stackoverflow和普通的Internet上都看过,找不到一个简单的AJAX文件上传器(仅表单提交)。我发现的那些不够灵活,不符合我的目的。如果我可以将此脚本用于文件上传,那就太好了:

<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文件上传器

如果您不想使用闪光灯,则可以使用此闪光灯。

以上是 PHP AJAX文件上传 的全部内容, 来源链接: utcz.com/qa/427611.html

回到顶部