Google uses AI technology to translate content into your preferred language. AI translations can contain errors.
发送反馈
Enum ButtonSet
使用集合让一切井井有条
根据您的偏好保存内容并对其进行分类。
ButtonSet
一个枚举,表示由一个或多个已确定的本地化集合,
添加到 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.' );
}
属性
属性 类型 说明
OKEnum一个“OK”按钮,表示一条只能关闭的信息性消息。
OK_CANCELEnum“OK”按钮和“取消”按钮按钮,让用户能够继续或暂停
操作。
YES_NOEnum“是”按钮和“否”按钮,让用户能够回答是/否问题。
YES_NO_CANCELEnum“是”“否”按钮,以及“取消”按钮按钮,让用户能够回答
是/否问题或停止操作。
发送反馈
如未另行说明,那么本页面中的内容已根据知识共享署名 4.0 许可 获得了许可,并且代码示例已根据 Apache 2.0 许可 获得了许可。有关详情,请参阅 Google 开发者网站政策 。Java 是 Oracle 和/或其关联公司的注册商标。
最后更新时间 (UTC):2026-04-13。
需要向我们提供更多信息?
[[["易于理解","easyToUnderstand","thumb-up"],["解决了我的问题","solvedMyProblem","thumb-up"],["其他","otherUp","thumb-up"]],[["没有我需要的信息","missingTheInformationINeed","thumb-down"],["太复杂/步骤太多","tooComplicatedTooManySteps","thumb-down"],["内容需要更新","outOfDate","thumb-down"],["翻译问题","translationIssue","thumb-down"],["示例/代码问题","samplesCodeIssue","thumb-down"],["其他","otherDown","thumb-down"]],["最后更新时间 (UTC):2026-04-13。"],[],[]]