gpt4 book ai didi

javascript - 如何关闭 alertify.dialog

转载 作者:行者123 更新时间:2023-11-30 16:26:34 24 4
gpt4 key购买 nike

我正在使用 Alertify 库在我的 javascript 中创建一个对话框,

alertify.myAlert || alertify.dialog('myAlert',function factory(){
return {
main:function(content){
this.setContent(content);
},
setup:function(){
return {
options:{
modal:false,
basic:true,
maximizable:false,
resizable:false,
padding:false,
visible:false
}
};
},
hooks: {
onshow: function() {
this.elements.dialog.style.height = '50%';
this.elements.dialog.style.width = '15%';
}
}
};
});

并且,使用下面的代码调用它..

alertify.myAlert("my html content");

启动后如何关闭?我尝试了 diff 组合,例如 alertify.myAlert.close()、alertify.myAlert.hide() 但没有任何效果..

最佳答案

试试这个:-

alertify.alert().destroy(); 

关于javascript - 如何关闭 alertify.dialog,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34058422/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com