溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

jquery實現(xiàn)上傳文件進度條

發(fā)布時間:2020-10-25 13:50:38 來源:腳本之家 閱讀:147 作者:月慕向陽 欄目:web開發(fā)

本文實例為大家分享了jquery實現(xiàn)上傳文件進度條的具體代碼,供大家參考,具體內(nèi)容如下

首先引入需要的js  css

用bootstrap進度條

<link rel="stylesheet" href="js/bootstrap/bootstrap.min.css" >
<script type="text/javascript" src="js/jquery-3.2.1.min.js"></script>
<script type="text/javascript" src="js/bootstrap/bootstrap.min.js"></script>
<script type="text/javascript" src="js/jquery.form.js"></script>

前端頁面

<form id="uploadFile" action="uploadFile" enctype="multipart/form-data">
 <input type="file" name="file">
 <input type="button" value="上傳" id="uplodsss">
 </form>
 <div class="progress">
 <div id="uploadFile_progressBar" class="progress-bar" role="progressbar" aria-valuenow="60" 
 aria-valuemin="0" aria-valuemax="100" >
 <span id="uploadFile_rate">0%</span>
 </div>
 </div>

js

<script type="text/javascript">
$(function(){
 $("#uplodsss").click(function(){
 debugger
 $('#uploadFile').ajaxSubmit({
  type:'post', 
  url:"uploadFile", 
  processData: false, //需設(shè)置為false,因為data值是FormData對象,不需要對數(shù)據(jù)做處理
  contentType: false, //需設(shè)置為false,因為是FormData對象,且已經(jīng)聲明了屬性enctype="multipart/form-data"
  resetForm: true, //成功提交后,是否重置所有表單元素的值
 uploadProgress: function (event, position, total, percentComplete) {
 if(percentComplete > 100){
 percentComplete = 100;
 }
 var percentVal = percentComplete + '%'; 
 $("#uploadFile_rate").html(percentVal); // 文件上傳進度顯示值
 $("#uploadFile_progressBar").width(percentVal); // 進度條狀態(tài)
 
 }, 
 success:function(data){
 alert("上傳文件成功!");
  $("#uploadFile_progressBar").width("0px"); // 進度條狀態(tài)
  $("#uploadFile_rate").html("0%");
  },
  error:function(){ 
  alert("上傳文件失敗,請重試!");
  }
 });
 });
})
</script>

需要jquery.form.js,下載地址

以上就是本文的全部內(nèi)容,希望對大家的學(xué)習(xí)有所幫助,也希望大家多多支持億速云。

向AI問一下細節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI