bootstrap-toastr 消息通知插

bootstrap-toastr 消息通知插

首先需要引入toastr.css和toastr.min.js

下载链接 https://download.csdn.net/download/super__code/10681693



使用起来也非常方便 ,有success、info、warning、error、remove等方法。使用如下:
success

   toastr.success("祝贺你成功了");

在这里插入图片描述
warning

   toastr.warning("警告你别来烦我了")

在这里插入图片描述
info

toastr.info("这是一个提示信息");

在这里插入图片描述

error

   toastr.error("出现错误,请更改");

在这里插入图片描述

这个是清除信息弹框(有动画,动画执行完删除)

  toastr.clear();

这个是删除信息弹框(没有动画,立即删除)

toastr.remove()

也可以调整弹框弹出位置和大小,如:

 	$("#success").click(function(){
          toastr.options = {
              "positionClass": "toast-top-full-width",//弹出窗的位置
          };
          toastr.success("祝贺你成功了")
    });

在这里插入图片描述

你可能感兴趣的:(html-css,javascript)