JS setTimeout和setInterval

<!DOCTYPE html>
<html>
  <head>
    <title>javascript01.html</title>

    <meta http-equiv="keywords" content="keyword1,keyword2,keyword3">
    <meta http-equiv="description" content="this is my page">
    <meta http-equiv="content-type" content="text/html; charset=UTF-8">

    <!--<link rel="stylesheet" type="text/css" href="./styles.css">-->
    <script type="text/javascript">
        console.log('测试时间计时器');

        function time(){
        //获取html中节点id为spanId的节点
            var node = document.getElementById('spanId');
            node.style.fontSize = '50px';
        }

        function fn1(){
            //setTimeout()是间隔一段时间后执行某个函数,这里是等待3秒之后执行time()函数,这个方法只会执行一次,如果希望重复执行使用setInterval
            setTimeout('time()', 3000);
            //或者可以调用本身来重复执行
            //console.log(123);
            //setTimeout('fn1()', 1000);
        }

        function bigger(){
            var node = document.getElementById('spanId');
            var size = parseInt(node.style.fontSize);
            if (size) {
                node.style.fontSize = size+5+'px';
            }else{
                node.style.fontSize = '12px';
            }

        }
        var stopInt;
        function fn2(){
        //setInterval表示每隔一段时间就调用一次函数
            stopInt = setInterval('bigger()', 1000);
        }

        function fn3(){
            window.clearInterval(stopInt);
        }

    </script>
  </head>

  <body>
    <span id="spanId">click me</span><br/>
    <span onclick="fn1()">点击上面的字体变大</span><br/>
    <span onclick="fn2()">使用setInterval是字体变大</span><br/>
    <span onclick="fn3()">停止setInterval</span><br/>

  </body>
</html>
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值