当点击关闭按钮时,它应该停止使用 alertify 进行重定向吗?

When clicks on close button it should stop redirecting using alertify?

当我点击关闭按钮时,它正在重定向到个人资料页面。但它进入了 onclose 事件部分,它不应该像 returns false 那样刷新页面,而是重定向到个人资料页面。

alertify.alert().setting({
                'title': 'Message',
                'label': 'Ok',
                'message': 'You have not yet enabled Appointment on your profile?',
                'onok': function () {
                    document.location.href = "/profile";
                },
                'onclose':function(e){
                   return false;//It should stop redirecting on profile page
                }
            }).show();

错误:当我点击 OkClose(X) 时,两个事件都在触发。

谢谢。

使用

 'onclose':(e)=>{
    e.preventDefault();    //It will stop redirecting on profile page
    return false;//
}

根据 alertify 的文档,这是 alert onok 事件的默认功能。

所以当 onok 事件在警报中调用时它会自动调用 onclose 事件来关闭对话框。