dialog.alert() 函数
window.alert() 的封装容器,应用开发者可通过 setAlert 替换,为模态浏览器窗口提供替代方案。
Signature:
export declare function alert(message: string, opt_callback?: () => void): void;
参数
参数 | 类型 | 说明 |
---|---|---|
消息 | 字符串 | 要向用户显示的消息。 |
opt_callback | () =>无效 | (可选)关闭提醒时的回调。 |
返回:
void