主题吐司通知

时间:2020-02-29 03:10:17

标签: html sass notifications toastr bootstrap-toast

我正在为我的Web应用程序使用由bootstrap和sass制成的主题。

我对bootstrap和sass不太熟悉。

我需要知道如何获取要插入到我的Web应用程序中的代码。

You can see the notification example builder here

And more info abou the theme here

所以...我需要设置一个敬酒通知,并将其用于此功能(用于警报):

function validarNombre () {
    var tituloAlbm = document.querySelector("#dni").value;
    console.log(tituloAlbm);
    if (tituloAlbm == "" ) {
            alert("Please Fill All Required Field");
            return false;
    } else if (tituloAlbm !== null){
        add();
    }
}

我知道这是一个非常模糊的问题,但我确实对此感到困惑...

谢谢。

亲切的问候。

1 个答案:

答案 0 :(得分:0)

我喜欢使用Alertify JS。

您只需要通过CDN或从静态文件夹调用Alertify,然后在脚本中调用即可。

您可以在JsFiddle上查看演示

在此处检查默认通知部分:https://alertifyjs.com/

您可以使用这些属性

alertify.alert('Ready!');

alertify.success('Success message');

alertify.error('Success message');