代码如下:这里用了setInterval一个time_count 函数, 但是里面还有参数StrRand , firstTime,怎么传呢?这个 time_count 在别的地方还有用,不能写setInterval里.setInterval( time_count ,2000);function time_count(StrRand , firstTime){ $.ajax ( { type : 'POST', //默认是GET url : '/egg/api.php/home/api/count_live', data:{ 'time': firstTime , 'StrRand' : StrRand , 'shop_id' : shop_id }, success : function (data) //成功函数,data 就是从*.php echo 的字符串内容; { //console.log( data ); console.log( StrRand ); }, cache:false //是否使用缓存 } );}
1 回答
墨色风雨
TA贡献1853条经验 获得超6个赞
// 方法一
setInterval(time_count, 2000, StrRand, firstTime)
// 方法二
setInterval(() => {
time_count(StrRand, firstTime)
}, 2000)
添加回答
举报
0/150
提交
取消