码迷,mamicode.com
首页 > 其他好文 > 详细

SweetAlert的入门

时间:2019-03-22 11:43:50      阅读:126      评论:0      收藏:0      [点我收藏+]

标签:ati   请求   路径   完成后   一个   fun   tle   href   类型   

在做后台管理系统,在用户交互这块(弹窗、提示相关),用了一款还不错的插件SweetAlert(一款原生js提示框,允许自定义,支持设置提示框标题、提示类型、确认取消按钮文本、点击后回调函数等等), 效果挺好的,简单写一下用法。
把大象装冰箱,总共分三步:

第一步:下载(引用)
有三种方式可供选择:
1.通过bower安装:

$ bower install sweetalert

2.通过npm安装

$ npm install sweetalert

3.我用的是最简单粗暴的方式3:

下载sweetAlert的CSS和JavaScript文件。地址点我
从github上拿下来的sweetalert-master是有带例子的,我们只需要其中两个文件:
dist下的sweetalert.min.js和sweetalert.css(下面引用路径是我自己的)。

<script src="js/sweetalert.min.js"></script>
<link rel="stylesheet" type="text/css" href="css/sweetalert.css"/>

第二步: 需要在页面加载完成后调用sweetalert函数:
swal({
title: "OK!",
text: "Nice to meet you!",
type: "success",
confirmButtonText: "HaHa"
})

第三步,就是写需要实现的具体功能了。下面,我来举几个栗子(代码直接从编辑器拿过来,模态框的图懒得贴了,效果可以自己试试。):
html代码:
基本信息:<button id="demo1">试一试</button> <br />

带有文字的标题:<button id="demo2">试一试</button> <br />

成功提示:<button id="demo3">试一试</button> <br />

带有“确认”按钮的功能的警告消息:<button id="demo4">试一试</button> <br />

通过传递参数,您可以执行一些其他的事情比如“取消”。:<button id="demo5">试一试</button> <br />

一个有自定义图标的消息:<button id="demo6">试一试</button> <br />

自定义HTML信息:<button id="demo7">试一试</button> <br />

自动关闭模态框:<button id="demo8">试一试</button> <br />

更换“提示”功能: <button id="demo9">试一试</button> <br />

使用加载程序(例如,用于AJAX请求): <button id="demo10">试一试</button> <br />

js代码(原谅我可耻的用了原生):

  1 document.getElementById("demo1").onclick = function() {
  2 swal("这是一个信息提示框!")
  3 };
  4 
  5 document.getElementById("demo2").onclick = function() {
  6 swal("这是一个信息提示框!", "很漂亮,不是吗?")
  7 };
  8 
  9 document.getElementById("demo3").onclick = function() {
 10 swal("干得好", "你点击了按钮!", "success")
 11 };
 12 
 13 document.getElementById("demo4").onclick = function() {
 14 swal({
 15 title: "你确定?",
 16 text: "您将无法恢复这个虚构的文件!",
 17 type: "warning",
 18 showCancelButton: true,
 19 confirmButtonColor: "#DD6B55",
 20 confirmButtonText: "是的,删除!",
 21 closeOnConfirm: false
 22 }, function() {
 23 swal("删除!", "您的虚构文件已被删除!", "success")
 24 })
 25 };
 26 
 27 document.getElementById("demo5").onclick = function() {
 28 swal({
 29 title: "你确定?",
 30 text: "您将无法恢复这个虚构的文件!",
 31 type: "warning",
 32 showCancelButton: true,
 33 confirmButtonColor: "#DD6B55",
 34 confirmButtonText: "是的,删除!",
 35 cancelButtonText: "不,取消",
 36 closeOnConfirm: false,
 37 closeOnCancel: false
 38 }, function(isConfirm) {
 39 if (isConfirm) {
 40 swal("删除!", "您的虚构文件已被删除!", "success") 
 41 } else{
 42 swal("取消!", "您的虚构文件是安全的!", "error")
 43 }
 44 })
 45 };
 46 
 47 document.getElementById("demo6").onclick = function() {
 48 swal({
 49 title: "Sweet!",
 50 text: "这里是自定义图像!",
 51 imageUrl: "img/thumbs-up.jpg"
 52 })
 53 };
 54 
 55 document.getElementById("demo7").onclick = function() {
 56 swal({
 57 title: "HTML <small>标题</small>!",
 58 text: "A custom <span style=‘color:pink‘>html<span> message.",
 59 html: true
 60 })
 61 };
 62 
 63 document.getElementById("demo8").onclick = function() {
 64 swal({
 65 title: "自动关闭警报!",
 66 text: "2秒后自动关闭",
 67 timer: 2000,
 68 showConfirmButton: false
 69 })
 70 };
 71 
 72 document.getElementById("demo9").onclick = function() {
 73 swal({
 74 title: "请输入!",
 75 text: "填写一些信息",
 76 type: "input",
 77 showCancelButton: true,
 78 closeOnConfirm: false,
 79 animation: "slide-from-top",
 80 inputPlaceholder: "请输入..."
 81 }, function(inputValue) {
 82 if (inputValue === false) {
 83 return false;
 84 }
 85 if (inputValue === "") {
 86 swal.showInputError("内容不能为空!");
 87 return false;
 88 }
 89 
 90 swal("Nice!", "你输入的是:" + inputValue, "success")
 91 })
 92 };
 93 
 94 document.getElementById("demo10").onclick = function() {
 95 swal({
 96 title: "AJAX请求实例",
 97 text: "提交运行Ajax请求",
 98 type: "info",
 99 showCancelButton: true,
100 closeOnConfirm: false,
101 showLoaderOnConfirm: true
102 }, function() {
103 setTimeout(function() {
104 swal("AJAX请求完成!");
105 }, 2000)
106 })
107 };

 

下面说一些可能会频繁使用的配置项:
技术图片

 


好啦,就这样吧。其实sweetalert2也已经出了,支持响应式,功能也更加强大,但本着够用就好的原则,还是先用的第一版。

参考:
源地址:http://t4t5.github.io/sweetalert/

中文:http://mishengqiang.com/sweetalert/

github地址:https://github.com/t4t5/sweetalert

SweetAlert的入门

标签:ati   请求   路径   完成后   一个   fun   tle   href   类型   

原文地址:https://www.cnblogs.com/dreamaker/p/10577207.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!