消息框作为安全选项(类似于“您确定要删除”)GAS

时间:2014-01-20 10:25:31

标签: google-apps-script google-sheets messagebox

好的,我找到了如何使用消息框。

 Browser.msgBox('Execute function(experimental)', 'Do you really want to proceed?', Browser.Buttons.YES_NO);

如果我希望在用户按下“NO”时中止该功能,我需要添加什么。 ?

1 个答案:

答案 0 :(得分:0)

msgBox(title, prompt, buttons)。返回:字符串 - 用户单击的按钮的小写文本。

示例:

function testMsgBox() {
  var _button = Browser.msgBox('Execute function(experimental)', 'Do you really want to proceed?', Browser.Buttons.YES_NO);
  if (_button === 'yes')
    //TODO 'yes'
  else
    //TODO 'no'
}