这是 AlertDialog 最常见用法的概述。有关可用属性、方法或事件的更多信息,请查看 AlertDialog 的完整 API 文档。
alert()
方法显示一条消息和一个“确定”按钮。使用它显示不需要用户操作的信息和通知。
该方法是 dialogs
模块 的一部分。
alert()
方法在全局范围内可用。您可以在应用程序中的任何位置调用它。
alert('Your message')
.then(() => {
console.log("Alert dialog closed.");
});
alert({
title: "Your title",
message: "Your message",
okButtonText: "Your OK button text"
}).then(() => {
console.log("Alert dialog closed");
});