基于警报框的操作

发布于 2024-08-23 06:37:46 字数 42 浏览 2 评论 0原文

是否可以根据警报框创建操作(例如“是”或“否”选项)? 提前致谢...

is it any possible to create operation based on the alert box(like yes or no option)?
Thank's in advance...

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

忘羡 2024-08-30 06:37:46

您是否只是想根据用户的决定启动某个功能?如果是这样,则有一个 closeHandler 作为 Alert.show 构造函数的一部分,您可以告诉它当警报框关闭时要运行哪个函数。

Alert.show("My Message", "Alert Box Title", (Alert.YES | Alert.NO), null, alertCloseHandler);

private function alertCloseHandler(event:CloseEvent){
  if(event.detail == Alert.YES){
    //code if they clicked yes
  }
}

Are you just trying to fire off a function based on the users decision? If so there is a closeHandler as part of the Alert.show constructor that you can tell it what function to run when the alert box closes.

Alert.show("My Message", "Alert Box Title", (Alert.YES | Alert.NO), null, alertCloseHandler);

private function alertCloseHandler(event:CloseEvent){
  if(event.detail == Alert.YES){
    //code if they clicked yes
  }
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文