📅  最后修改于: 2023-12-03 15:41:55.562000             🧑  作者: Mango
本文将介绍如何使用jQuery 3和AJAX创建一个进度条,以便在向服务器发送数据的过程中,可以向用户显示进度条,从而提高用户体验。
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
<div id="progressbar"></div>
#progressbar {
width: 100%;
height: 10px;
background-color: lightgray;
position: fixed;
top: 0;
left: 0;
z-index: 9999;
}
#progressbar div {
background-color: green;
height: 100%;
}
$(document).on("click", "#submit-btn", function() {
var formData = new FormData($(this).closest("form")[0]);
$.ajax({
url: "/submit",
type: "POST",
xhr: function() {
var xhr = new window.XMLHttpRequest();
xhr.upload.addEventListener("progress", function(evt) {
if (evt.lengthComputable) {
var percentComplete = evt.loaded / evt.total;
$("#progressbar div").css({
width: percentComplete * 100 + "%"
});
}
}, false);
return xhr;
},
success: function(data) {},
data: formData,
cache: false,
contentType: false,
processData: false
});
$("#progressbar").show();
});
$(document).ajaxStop(function() {
$("#progressbar").hide();
});
本文介绍了如何使用jQuery 3和AJAX创建进度条。通过这种方法,可以为用户提供更好的体验,并向他们显示数据发送的进度,从而让他们知道大概需要多久才能完成。