码迷,mamicode.com
首页 > Web开发 > 详细

JS定时器/date对象

时间:2019-06-24 21:21:03      阅读:137      评论:0      收藏:0      [点我收藏+]

标签:style   var   fun   str   time()   span   strong   bsp   nbsp   

一、定时器:

  (1) setInterval();  //创建定时器,循环;

  (2) setTimeOut();  //1次;

  (3) clearInterval();  //清除定时器;

  (4) clearTimeOut();

  注:

  (1) 用法:

  var interval=setInterval(function(){

    test();

  },1000);

  (2) clearInerval(interval);      

  //括号内可填写123,表示第几个定时器。

二、date对象:

  1.创建方法:var date=new Date();

  2.date对象的方法:

    (1) Date();  //返回当前的日期和时间;

    (2) getTime();  //返回197011日至今的毫秒数;

    (3) setTime();  //以毫秒,设置Date对象;

    (4) toString();  //Date对象转为字符串;

    (5) toDateString();  //把日期转为字符串;

    (6) toTimeString();  //把时间转为字符串

JS定时器/date对象

标签:style   var   fun   str   time()   span   strong   bsp   nbsp   

原文地址:https://www.cnblogs.com/Tractors/p/11079339.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!