Oracle APEX 在 3 秒后以 Javascript 关闭模态页面

Oracle APEX Close Modal Page with Javascript After 3 Seconds

我在动态操作中使用 Javascript 来关闭我当前的模态页面,如下所示:

apex.navigation.dialog.close(true)

是否可以在 3 秒后关闭我当前的模态页面?因为我想首先显示这样的通知: show_notification('Please Do Something');

找到了!!

setTimeout(function() {apex.navigation.dialog.close(true)}, 3000);