一个枚举,表示可添加到 alert
或 prompt
中的预定义、本地化的一组或多组对话框按钮。如需确定用户点击了哪个按钮,请使用 Button
。
如需调用枚举,您可以调用其父类、名称和属性。例如
Base.ButtonSet.OK
。
// Display a dialog box with a message and "Yes" and "No" buttons. const ui = DocumentApp.getUi(); const 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 | “是”按钮、“否”按钮和“取消”按钮,用于让用户回答是/否问题或暂停操作。 |