本篇内容主要讲解“php+ajax怎么实现无刷新上传图片”,感兴趣的朋友不妨来看看。本文介绍的方法操作简单快捷,实用性强。下面就让小编来带大家学习“php+ajax怎么实现无刷新上传图片”吧!
1.引入文件
<!--图片上传begin--> <script type="text/javascript" src="/js/jquery.form.js"></script> <script type="text/javascript" src="/js/uploadImg.js"></script> <link href="/css/uploadImg.css" rel="stylesheet" type="text/css" /> <!--图片上传end-->
2.html部分
<div class="upimg"> <input name="icon" type="text" class="imgsrc" value="<!--{$contents.icon}-->" /> <div class="showimg"> <!--{if $contents.icon}--> <img src="<!--{$contents.icon}-->" height="120px"> <!--{/if}--> </div> <div class="btn" > <span>添加图片</span> <input class="fileupload" type="file" name="pic[]"> </div> </div>
3.给fileupload加上表单
/*图片上传*/ $(".fileupload").wrap("<form action='/bookstore/book/uploadpic' method='post' enctype='multipart/form-data'></form>"); //函数处理
4.ajax文件上传
jQuery(function ($) { $(".fileupload").change(function(){ //选择文件 if ('' === $(this).val()) return; var upimg = $(this).parent().parent().parent(); var showimg = upimg.find('.showimg'); var btn = upimg.find('.btn span'); var imgsrc = upimg.find('.imgsrc'); $(this).parent().ajaxSubmit({ //dataType: 'json', //数据格式为json beforeSend: function() { //开始上传 showimg.empty(); //清空显示的图片 imgsrc.val(""); btn.html("上传中..."); //上传按钮显示上传中 }, uploadProgress: function(event, position, total, percentComplete) { }, success: function(data) { //成功 //获得后台返回的json数据,显示文件名,大小,以及删除按钮 var img = data; //显示上传后的图片 imgsrc.val(""); imgsrc.val(img); showimg.html("<img width='120' height='120' src='"+img+"'>"); btn.html("上传成功"); //上传按钮还原 }, error:function(xhr){ //上传失败 btn.html("上传失败"); } }); }); });
5.后台进行处理
public function uploadpicAction(){ //图片上传和显示 $data = ""; $src = $this->uploadFiles2($imgpath = "/upload/book" ,$filesname = "pic"); isset($src[0]['src']) && $src[0]['src'] ? $data = $this->concaturl($src[0]['src']) : null; echo $data; }
6.将返回的数据交给前端,进行一些处理。
进而提交到后台数据库。
到此,相信大家对“php+ajax怎么实现无刷新上传图片”有了更深的了解,不妨来实际操作一番吧!这里是亿速云网站,更多相关内容可以进入相关频道进行查询,关注我们,继续学习!
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。