您好,登錄后才能下訂單哦!
摘要
1.jquery自定義插件方法
2.表單file樣式調(diào)整
3.利用formData,ajax上傳圖片
4.js,css彈出層
5.springmvc上傳圖片
效果
調(diào)用方式
$("#picUrl").imgUpload({}),
在代碼內(nèi)部為調(diào)用對(duì)象綁定了click事件,點(diǎn)擊彈出上傳界面。
$(function(){ $("#picUrl").imgUpload({url:'<%=basePath%>'+'file/upload.do'}) $("#picUrl").imgUpload("resize");/**彈出層水平垂直居中**/ })
jquery自定義插件要點(diǎn)
1.定義作用域
2.$.fn.***為每個(gè)jquery對(duì)象擴(kuò)展方法
3.設(shè)置默認(rèn)值
4.return this.each,支持鏈?zhǔn)秸{(diào)用
/**部分代碼**/ (function($){ $.fn.imgUpload=function(options,param){ if(typeof options =="string"){ return $.fn.imgUpload.methods[options](this,param); } /**this為jquery對(duì)象**/ options = options || {}; return this.each(function() { /**this 為 dom 對(duì)象**/ var state=$.data(this,"imgUploadData"); var opts; if(state){ opts = $.extend(state.options, options); state.options = opts; }else{ opts = $.extend({},$.fn.imgUpload.defaults,options); $.data(this,"imgUploadData",{options:opts}); } init(this); }); }; $.fn.imgUpload.methods={ resize:function(jq){ $(".main-layer").css({ left:($(window).width()-$(".main-layer").outerWidth())/2, top:($(window).height()-$(".main-layer").outerHeight())/2 }); } } $.fn.imgUpload.defaults={ width:100, height:200, url:'#' } })(jQuery);
利用formData,ajax上傳文件
/**html5 formData**/ function upload(jq){ var formData=new FormData(); var opts = $.data(jq,"imgUploadData").options; formData.append('file',$("#imgFile")[0].files[0]); $.ajax({ url: opts.url, type: 'POST', cache: false, data: formData, processData: false, contentType: false, success:function(url){ console.info(url); }, error:function(url){ console.info(url); } }) }
表單file樣式調(diào)整
.main-layer .a-upload { padding: 4px 10px; height: 20px; line-height: 20px; position: relative; cursor: pointer; color: #888; background: #fafafa; border: 1px solid #ddd; border-radius: 4px; overflow: hidden; display: inline-block; *display: inline; *zoom: 1 ; width:90%; text-align: center; } .a-upload input { position: absolute; font-size: 100px; right:0; top: 0; opacity: 0; filter: alpha(opacity=0); cursor: pointer }
js,css彈出層樣式
/***遮罩層樣式**/ .wrap-overlayer{ position: fixed; left: 0; top:0; width: 100%; height: 100%; background-color: rgba(0,0,0,0.3); z-index:10; display:none; } /**上傳組件樣式**/ .main-layer{ position:absolute; left:50%;top:50%; background-color: #fff; width:350px; height: 150px; }
后臺(tái)部分代碼
@RequestMapping(value="/upload.do",method=RequestMethod.POST) private void fildUpload(@RequestParam(value="file",required=false) MultipartFile file, HttpServletRequest request,HttpServletResponse resp)throws Exception{ //獲得物理路徑webapp所在路徑 String pathRoot = request.getSession().getServletContext().getRealPath(""); String path=""; if(!file.isEmpty()){ //生成uuid作為文件名稱 String uuid = UUID.randomUUID().toString().replaceAll("-",""); //獲得文件類型(可以判斷如果不是圖片,禁止上傳) String contentType=file.getContentType(); //獲得文件后綴名稱 String imageName=contentType.substring(contentType.indexOf("/")+1); path="/images/"+uuid+"."+imageName; file.transferTo(new File(pathRoot+path)); } request.setAttribute("imagesPath", path); }
以上所述是小編給大家介紹的jQuery自定義圖片上傳插件實(shí)例代碼,希望對(duì)大家有所幫助,如果大家有任何疑問歡迎給我留言,小編會(huì)及時(shí)回復(fù)大家的,在此也非常感謝大家對(duì)億速云網(wǎng)站的支持!
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。