shurun
//console.log(\'每隔*秒钟刷新一次\');
var timer = window.setInterval(function() {
    $("#table_list_1").trigger("reloadGrid");
},10 * 1000);

 

//console.log(\'每隔t秒钟刷新一次\');
function setTimer(t){
    var timer = window.setInterval(function() {
        //do something here...
        //********************
        
    },t * 1000);
    return timer;
}

 

若对您有用,请赞助个棒棒糖~

分类:

技术点:

相关文章:

  • 2021-12-13
  • 2021-11-29
  • 2021-07-10
  • 2021-12-07
  • 2021-04-17
  • 2021-11-19
  • 2021-11-19
  • 2021-12-04
猜你喜欢
  • 2021-11-19
  • 2021-12-15
  • 2021-08-22
  • 2021-11-03
  • 2021-11-19
  • 2021-09-08
相关资源
相似解决方案