var threads = [];function 计划任务(函数, 运行时间){ var t = new thread(); threads.push(t); t.runJsCode( () => { 函数(); }, "计划任务") sleep.second(运行时间); t.stop();}func ...