js函数定时器,定时读取系统实时连接数

function GetDeviceInfo()
{
    setInterval(function()
        {
        GetDeviceRealtimeConnect();  //js调取实时连接数的函数
        },
        1000/*启动间隔,单位ms*/

    );


}

原文地址:https://www.cnblogs.com/riasky/p/3507346.html