利用javascript,或者Jquery实现一个倒计时5分钟触发一个function的方法

2025-04-13 19:29:16
推荐回答(1个)
回答(1):

直接用
setTimeout(function(){
func();
}, 300000);
不行?