<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<title>演示:漂亮实用的提示框插件SweetAlert</title>
<meta name="keywords" content="Javascript" />
<meta name="description" content="Helloweba文章结合实例演示HTML5、CSS3、jquery、PHP等WEB技术应用。" />
<link rel="stylesheet" type="text/css" href="../css/main.css" />
<script type="text/javascript" src="http://libs.useso.com/js/jquery/1.7.2/jquery.min.js"></script>
<style>
.demo{width:300px; margin:60px auto 10px auto}
@media only screen and (min-width: 420px) {
.demo{width:500px; margin:60px auto 10px auto}
}
button, .button {
background-color: #AEDEF4;color: white;border: none;box-shadow: none;
font-size: 17px;font-weight: 500;font-weight: 600;
border-radius: 3px;padding: 15px 35px;margin: 26px 5px 0 5px;cursor: pointer; }
button:hover, .button:hover {background-color: #a1d9f2; }
</style>
<script src="sweetalert.min.js"></script>
<link rel="stylesheet" type="text/css" href="sweetalert.css">
</head>
<body>
<div id="header">
<div id="logo"><h1><a href="http://www.helloweba.com" title="返回helloweba首页">helloweba</a></h1></div>
</div>
<div id="main">
<h2 class="top_title"><a href="http://www.helloweba.com/view-blog-308.html">漂亮实用的提示框插件SweetAlert</a></h2>
<div class="demo">
<div class="demo_1">
基本示例:<button>点击这里</button>
</div>
<div class="demo_2">
提示成功:<button>点击这里</button>
</div>
<div class="demo_3">
提示失败:<button>点击这里</button>
</div>
<div class="demo_4">
提示确认:<button>点击这里</button>
</div>
<div class="demo_5">
定义内容:<button>点击这里</button>
</div>
<div class="demo_6">
确认输入:<button>点击这里</button>
</div>
</div>
</div>
<script>
$(function(){
$(".demo_1 button").click(function(){
swal("这是一个信息提示框!");
});
$(".demo_2 button").click(function(){
swal("Good!", "弹出了一个操作成功的提示框", "success");
});
$(".demo_3 button").click(function(){
swal("OMG!", "弹出了一个错误提示框", "error");
});
$(".demo_4 button").click(function(){
swal({
title: "您确定要删除吗?",
text: "您确定要删除这条数据?",
type: "warning",
showCancelButton: true,
closeOnConfirm: false,
confirmButtonText: "是的,我要删除",
confirmButtonColor: "#ec6c62"
}, function() {
$.ajax({
url: "do.php",
type: "DELETE"
}).done(function(data) {
swal("操作成功!", "已成功删除数据!", "success");
}).error(function(data) {
swal("OMG", "删除操作失败了!", "error");
});
});
});
$(".demo_5 button").click(function(){
swal({
title: "Good!",
text: '自定义<span style="color:red">图片</span>、<a href="#">HTML内容</a>。<br/>5秒后自动关闭。',
imageUrl: "images/thumbs-up.jpg",
html: true,
timer: 5000,
showConfirmButton: false
});
});
$(".demo_6 button").click(function(){
swal({
title: "输入框来了",
text: "这里可以输入并确认:",
type: "input",
showCancelButton: true,
closeOnConfirm: false,
animation: "slide-from-top",
inputPlaceholder: "填点东西到这里面吧"
}, function(inputValue){
if (inputValue === false) return false;
if (inputValue === "") {
swal.showInputError("请输入!");
return false
}
swal("棒极了!", "您填写的是: " + inputValue, "success");
});
});
});
</script>
<div id="footer">
<p>Powered by helloweba.com 允许转载、修改和使用本站的DEMO,但请注明出处:<a href="http://www.helloweba.com">www.helloweba.com</a></p>
</div>
</body>
</html>

flyjoe1250
- 粉丝: 1
最新资源
- MDK5.43最新安装包-绿色直接安装官网版本
- marktext-x64-wintest11a.zip
- 基于Vite构建的Vue3单页面应用项目-集成Vue-Router路由管理-Pinia状态管理-Axios网络请求-Element-PlusUI组件库-TailwindCSS样式框.zip
- taibaiyifeng-DbPenetration-5368-1755758360591.zip
- 这是一组MATLAB和Python函数,用于连续体机器人的可视化和绘图。_This is a set of MATLAB
- 用于UIUC ECE机器人入门课程的MATLAB和Python函数库。_Function Library in MATL
- 简化的基于低级套接字的matlab控制器,用于Rhinocerus软件的集成IronPython_Simplified
- Python和Matlab项目的集合,旨在利用各种机器学习技术来解决大数据问题。_A collection of Pyt
- 工作和学习_work and study.zip
- 论文的实现细节_DPED_用于边缘检测的仿生双路径网络_该代码在Python上进行了评估。PyTorch。 .MATLA
- 该项目为OMNeT提供了一个基于Python websocket的扩展,使其能够执行MATLAB脚本。_This pro
- Cogan实验室当前预处理方法的仓库_A repo of current preprocessing methods f
- Matlab仿真的健身房环境_A Gym Environment for Matlab Simulations.zip
- Matlab核心脚本_Matlab Core Script.zip
- 用python和matlab实现的各种生物信息学脚本_Assorted bioinformatics scripts i
- python或matlab上数值分析的不同算法-UNI_Differents algorithms on python
资源上传下载、课程学习等过程中有任何疑问或建议,欢迎提出宝贵意见哦~我们会及时处理!
点击此处反馈


