專案中會常用到AJAX無刷新上傳圖片,但是iframe上傳和flash插件都是比較複雜的,所以就找了一個jquery的插件。以下透過實例程式碼跟大家介紹使用jQuery ajaxupload外掛實現無刷新上傳檔案功能,需要的朋友參考下吧
專案中會常用到AJAX無刷新上傳圖片,但是iframe上傳和flash外掛都是比較複雜的,所以就找了一個jquery的插件。
程式碼如下
使用方法如下
<script type="text/javascript"> $(function () { var button = $('#upload'); new AjaxUpload(button, { action: '/upload/imagesAjaxUpload', name: 'upload', onSubmit: function (file, ext) { if (!(ext && /^(jpg|jpeg|JPG|JPEG)$/.test(ext))) { alert('图片格式不正确,请选择 jpg 格式的文件!', '系统提示'); return false; } // change button text, when user selects file button.text('上传中'); // If you want to allow uploading only 1 file at time, // you can disable upload button this.disable(); // Uploding -> Uploading. -> Uploading... interval = window.setInterval(function () { var text = button.text(); if (text.length < 10) { button.text(text + '...'); } else { button.text('上传中'); } }, 200); }, onComplete: function (file, response) { window.clearInterval(interval); // enable upload button this.enable(); var json = eval('(' + response + ')'); button.text('选择文件'); $(".qr").css("display","inline"); $(".qr>img").attr("src",json.file_name); $("input[name='wechat_qr']").val('/uploads/qr/'+json.file_name); //alert(json.file_name); //$("#ajaximg").html("<img src='/uploads/qr/"+json.file_name+"' />"); //$("#wechat_qr").val('/uploads/qr/'+json.file_name); } }); }); </script>
以上是用jQuery外掛實現無刷新上傳檔案程式碼分享的詳細內容。更多資訊請關注PHP中文網其他相關文章!