码迷,mamicode.com
首页 > 其他好文 > 详细

定时器执行有参数的函数的两种方法

时间:2019-12-20 20:52:20      阅读:91      评论:0      收藏:0      [点我收藏+]

标签:time   console   定时器   style   两种   div   参数   func   函数   

1.用引号括起来

2.在外面再套个函数

    function f(msg) {
        console.log(msg);
    }
    setTimeout("f(‘杨越‘)",2000);
    setTimeout(function () {
        f(‘杨越‘)
    },4000);

定时器执行有参数的函数的两种方法

标签:time   console   定时器   style   两种   div   参数   func   函数   

原文地址:https://www.cnblogs.com/ustc-yy/p/12074686.html

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