對 prompt
面板中顯示
使用者介面環境。回應包含使用者輸入的任何文字
對話方塊的輸入欄位,並指出使用者點選哪個按鈕關閉對話方塊。
// Display a dialog box with a title, message, input field, and "Yes" and "No" buttons. The // user can also close the dialog by clicking the close button in its title bar. var ui = DocumentApp.getUi(); var response = ui.prompt('Getting to know you', 'May I know your name?', ui.ButtonSet.YES_NO); // Process the user's response. if (response.getSelectedButton() == ui.Button.YES) { Logger.log('The user\'s name is %s.', response.getResponseText()); } else if (response.getSelectedButton() == ui.Button.NO) { Logger.log('The user didn\'t want to provide a name.'); } else { Logger.log('The user clicked the close button in the dialog\'s title bar.'); }
方法
方法 | 傳回類型 | 簡短說明 |
---|---|---|
getResponseText() | String | 取得使用者在對話方塊輸入欄位中輸入的文字。 |
getSelectedButton() | Button | 取得使用者點選以關閉對話方塊的按鈕。 |
內容詳盡的說明文件
getResponseText()
取得使用者在對話方塊輸入欄位中輸入的文字。即使如此
使用者按一下帶有負號 (例如「取消」) 的按鈕,關閉對話方塊或
對話方塊標題列中的關閉按鈕。getSelectedButton()
可以協助判斷
使用者是否預期回應文字有效。
回攻員
String
:使用者在對話方塊輸入欄位中輸入的文字。