Alertify.alert没有关闭按钮点击

时间:2015-11-05 18:55:36

标签: cordova ionic

我正在使用Ionic和Cordova构建应用程序,并且alertify消息显示正常但在我单击确定时不会关闭。我试图添加onocclick函数来尝试解决问题,但这没有做任何事情。 这是我的代码:

    if (($scope.loginData.username==undefined)&&($scope.loginData.password==undefined)){
        alertify.alert("You have not entered a username and a password.");
        return;
    }

    else if ($scope.loginData.username==undefined){
        alertify.alert("You have not entered a username.").set('label', 'Ok');
        return;
    }

    else if ($scope.loginData.password==undefined){
        alertify.alert("You have not entered a password.");
        return;
    }

2 个答案:

答案 0 :(得分:0)

我想你可能会错过onok方法

'onok': function(){ alertify.success('Great');}

考虑签出此模板以获取警报

var closable = alertify.alert().setting('closable');

alertify.alert()
  .setting({
    'label':'Agree',
    'message': 'This dialog is : ' + (closable ? ' ' : ' not ') + 'closable.' ,
    'onok': function(){ alertify.success('Great');}
  }).show();

答案 1 :(得分:0)

如果有人在2018年仍然遇到此问题,我在ios上遇到了两次,并且通过删除项目中的一个CSS软件包/库解决了这两种情况。

显然,引导程序中有一些样式会影响Alertify的功能(就我而言)。

您可能想检查项目中所有其他带有样式和CSS文件的库。