91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

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

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

如何使用vue實現計時器功能

發布時間:2021-08-06 13:43:33 來源:億速云 閱讀:1505 作者:小新 欄目:開發技術

小編給大家分享一下如何使用vue實現計時器功能,希望大家閱讀完這篇文章之后都有所收獲,下面讓我們一起去探討吧!

具體內容如下

首先我們要知道setTimeout和setInterval的區別

setTimeout只在指定時間后執行一次,代碼如下:

<script>  
//定時器 異步運行  
function hello(){  
alert("hello");  
}  
//使用方法名字執行方法  
var t1 = window.setTimeout(hello,1000);  
var t2 = window.setTimeout("hello()",3000);//使用字符串執行方法  
window.clearTimeout(t1);//去掉定時器  
</script>

setInterval以指定時間為周期循環執行,代碼如下:

//實時刷新時間單位為毫秒  
setInterval('refreshQuery()',8000);   
/* 刷新查詢 */  
function refreshQuery(){  
   $("#mainTable").datagrid('reload',null);  
}

一般情況下setTimeout用于延遲執行某方法或功能,
setInterval則一般用于刷新表單,對于一些表單的實時指定時間刷新同步

計時器

HTML代碼

<div class="father">
  <ul>
   <li>{{one}}<span>:</span></li>
   <li>{{two}}<span>:</span></li>
   <li>{{three}}</li>
  </ul>
  <el-button type="primary" @click="startHandler">開始</el-button>
  <el-button type="primary" @click="endHandler">暫停</el-button>
</div>

JAVASCRIPT代碼

<script>
export default {
  name: 'HelloWorld',
  data(){
   return {
  flag: null,
  one : '00', // 時
  two : '00', // 分
  three : '00', // 秒
  abc : 0, // 秒的計數
  cde : 0, // 分的計數
  efg : 0, // 時的計數
   }
  },
  props: {
    msg: String
  },
  mounted() {
   
  },
  methods:{
  // 開始計時
 startHandler(){
  this.flag = setInterval(()=>{
   if(this.three === 60 || this.three === '60'){
    this.three = '00';
    this.abc = 0;
    if(this.two === 60 || this.two === '60'){
     this.two = '00';
     this.cde = 0;
     if(this.efg+1 <= 9){
      this.efg++;
      this.one = '0' + this.efg;
     }else{
      this.efg++;
      this.one = this.efg;
     }
    }else{
     if(this.cde+1 <= 9){
      this.cde++;
      this.two = '0' + this.cde;
     }else{
      this.cde++;
      this.two = this.cde;
     }
    }
   }else{
    if(this.abc+1 <= 9){
     this.abc++;
     this.three = '0' + this.abc;
    }else{
     this.abc++;
     this.three=this.abc;
    }
   }
   
  },100)
 },
 // 暫停計時
 endHandler(){
  this.flag = clearInterval(this.flag)
 }
  }
}
</script>

效果如下:

如何使用vue實現計時器功能

看完了這篇文章,相信你對“如何使用vue實現計時器功能”有了一定的了解,如果想了解更多相關知識,歡迎關注億速云行業資訊頻道,感謝各位的閱讀!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

vue
AI

运城市| 通山县| 洪湖市| 贡觉县| 东兴市| 蒙山县| 磐安县| 武陟县| 武隆县| 桓台县| 巴马| 秭归县| 闸北区| 仁布县| 德化县| 奇台县| 大邑县| 观塘区| 湛江市| 云梦县| 青田县| 金寨县| 潮州市| 防城港市| 容城县| 上栗县| 共和县| 盘山县| 都江堰市| 海淀区| 辽宁省| 蛟河市| 鄂伦春自治旗| 遂平县| 托克托县| 松溪县| 平乡县| 望都县| 榕江县| 济源市| 师宗县|