html5-php的ajax文件上传实现

-----------------------------------form.html---------------------------------------
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">

成都创新互联公司从2013年成立,是专业互联网技术服务公司,拥有项目成都做网站、网站建设、外贸营销网站建设网站策划,项目实施与项目整合能力。我们以让每一个梦想脱颖而出为使命,1280元广东做网站,已为上家服务,为广东各地企业和个人服务,联系电话:18980820575

<head>

<meta http-equiv="Content-Type" content="text/html;charset=UTF-8">

<title>Document</title>

<script type="text/javascript">

function send(){

 var pic = document.getElementsByTagName('input')[0].files[0];

 var fd = new FormData();

 fd.append('pic',pic);

 var xmlhttp = new XMLHttpRequest();

 xmlhttp.onreadystatechange = function(){

 if( this.readyState == 4 && this.status == 200 ){

 document.getElementById('info').innerHTML = this.responseText;

 }

 }

 xmlhttp.open('POST','upload.php',true);

xmlhttp.send(fd);

}

</script>

</head>

<body>

<div id="info"></div>

<form action="">

<input type="file" onchange="send()" />

</form>

</body>

</html>

--------------------------------------upload.php-------------------------------------

<?php 

if(move_uploaded_file($_FILES['pic']['tmp_name'],'./upload/'.$_FILES['pic']['name'] )){

echo '上传成功 ';

}else{

echo '上传失败';

}

 ?>

分享题目:html5-php的ajax文件上传实现
URL标题:https://www.cdcxhl.com/article30/ggeipo.html

成都网站建设公司_创新互联,为您提供企业网站制作商城网站企业建站营销型网站建设自适应网站域名注册

广告

声明:本网站发布的内容(图片、视频和文字)以用户投稿、用户转载内容为主,如果涉及侵权请尽快告知,我们将会在第一时间删除。文章观点不代表本网站立场,如需处理请联系客服。电话:028-86922220;邮箱:631063699@qq.com。内容未经允许不得转载,或转载时需注明来源: 创新互联

微信小程序开发