我正在尝试使用用户输入在Google Apps脚本(使用JavaScript)上启动倒计时。而且我得到了错误(我认为这是语法): 形式参数后的“缺少”。(第1行,文件“代码”)” 这是我的代码:
function COUNTD(Browser.inputBox(prompt))
{
var clock = Browser.inputBox("Intiate countdown sequence?");
if(clock == "yes")
{
return("T - 30 minutes and counting...");
}
if(count == "abort")
{
return("Countdown aborted")
}
}
我知道此问题有多种变体,但我无法使用为这些问题给出的答案并将其应用于我的问题。
我真的很傻吗?
答案 0 :(得分:0)
我认为您需要的是这样的
function COUNTD(bInputBox)
{
var clock = bInputBox("Intiate countdown sequence?");
if(clock == "yes")
{
return("T - 30 minutes and counting...");
}
if(count == "abort")
{
return("Countdown aborted")
}
}
COUNTD(Browser.inputBox);