TimeoutInterval = TimeoutInterval * 60 * 1000; //Converting to milisecond
TimeOutObj = setTimeout(function(){
},TimeoutInterval);
这是什么问题,为什么我收到此错误
Cannot convert Nan to Java.lang.long
。 最佳答案
尝试
var TimeoutInterval = 1;
TimeoutInterval = TimeoutInterval * 60 * 1000;
关于javascript - 无法将Nan转换为Java.lang.long,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/7190517/