Home  >  Article  >  Web Front-end  >  Detailed explanation of jQuery ajaxupload plug-in for uploading files without refreshing

Detailed explanation of jQuery ajaxupload plug-in for uploading files without refreshing

小云云
小云云Original
2018-01-17 13:42:291426browse

AJAX is often used to upload images without refreshing in the project, but iframe upload and flash plug-in are relatively complicated, so I found a jquery plug-in. The following is an example code to introduce to you how to use the jQuery ajaxupload plug-in to achieve the function of uploading files without refreshing. Friends who need it can refer to it. I hope it can help you.

The code is as follows

The usage method is as follows

<script type="text/javascript">
$(function () {
var button = $(&#39;#upload&#39;);
new AjaxUpload(button, {
action: &#39;/upload/imagesAjaxUpload&#39;,
name: &#39;upload&#39;,
onSubmit: function (file, ext) {
if (!(ext && /^(jpg|jpeg|JPG|JPEG)$/.test(ext))) {
alert(&#39;图片格式不正确,请选择 jpg 格式的文件!&#39;, &#39;系统提示&#39;);
return false;
}
// change button text, when user selects file
button.text(&#39;上传中&#39;);
// 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 + &#39;...&#39;);
} else {
button.text(&#39;上传中&#39;);
}
}, 200);
},
onComplete: function (file, response) {
window.clearInterval(interval);
// enable upload button
this.enable();
var json = eval(&#39;(&#39; + response + &#39;)&#39;);
button.text(&#39;选择文件&#39;);
$(".qr").css("display","inline");
$(".qr>img").attr("src",json.file_name);
$("input[name=&#39;wechat_qr&#39;]").val(&#39;/uploads/qr/&#39;+json.file_name);
//alert(json.file_name);
//$("#ajaximg").html("<img src=&#39;/uploads/qr/"+json.file_name+"&#39; />");
//$("#wechat_qr").val(&#39;/uploads/qr/&#39;+json.file_name);
}
});
});
</script>

Related recommendations:

Detailed examples of ajax implementation of the function of uploading files without refreshing

jQuery no-refresh upload image plug-in

JavaScript image preview function realizes no-refresh upload

The above is the detailed content of Detailed explanation of jQuery ajaxupload plug-in for uploading files without refreshing. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn