表示可以添加到 alert
或 prompt
的一个或多个本地化按钮的预定本地化集的枚举。如需确定用户点击的是哪个按钮,请使用 Button
。
// Display a dialog box with a message and "Yes" and "No" buttons. var ui = DocumentApp.getUi(); var response = ui.alert('Are you sure you want to continue?', ui.ButtonSet.YES_NO); // Process the user's response. if (response == ui.Button.YES) { Logger.log('The user clicked "Yes."'); } else { Logger.log('The user clicked "No" or the dialog\'s close button.'); }
属性
属性 | 类型 | 说明 |
---|---|---|
OK | Enum | 一个“确定”按钮,用于指示只能关闭的信息性消息。 |
OK_CANCEL | Enum | 一个“确定”按钮和一个“取消”按钮,可让用户继续或暂停某项操作。 |
YES_NO | Enum | 一个“是”按钮和一个“否”按钮,允许用户回答“是/否”问题。 |
YES_NO_CANCEL | Enum | 一个“是”按钮、一个“否”按钮和一个“取消”按钮,允许用户回答“是/否”问题或暂停操作。 |