代码如下:
这里用了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 //是否使用缓存
}
);
}
墨色风雨
相关分类