for(x = 1; x<5; x++)
{
setTimeout(function(){
clickRecordSearch(0, ip_nvr, x, "2017-05-17 00:00:00", "2017-05-17 23:59:59", num_nvr); //channel num as is, without shift
}, 500);
}
172.16.59.100 login success!
172.16.59.100 5
172.16.59.100 5
172.16.59.100 5
172.16.59.100 5
for (x = 1; x < 5; x++) {
/*
setTimeout(function(){
clickRecordSearch(0, ip_nvr, x, "2017-05-17 00:00:00", "2017-05-17 23:59:59", num_nvr); //channel num as is, without shift
}, 500);
*/
(function(x) {
setTimeout(function() {
clickRecordSearch(0, ip_nvr, x, "2017-05-17 00:00:00", "2017-05-17 23:59:59", num_nvr); //channel num as is, without shift
}, 500);
})(x);
}