在asp.net中,实现类似安卓界面toast的方法(附更多弹窗样式)

目录

一、背景

二、操作方法

2.1修改前

2.2修改后

三、总结

附:参考文章:


一、背景

最近在以前的asp.net网页中,每次点击确定都弹窗,然后还要弹窗点击确认,太麻烦了,这次想升级一下,实现类似安卓toast的弹窗提示方式。于是百度了一下,目前看到有两种,sweetalert和toastr。

这里讲一下我使用sweetalert(SweetAlert2 - a beautiful, responsive, customizable and accessible (WAI-ARIA) replacement for JavaScript's popup boxes)的操作。

二、操作方法

2.1修改前

原来的代码:

javascript 复制代码
var title = '报警确认';
$.messager.confirm('Confirm', '是否确认报警?  <br/>报警类别:' + FAlertID + ' <br/> 报警内容:' + FAlarmInfo, function (r) {
            if (r) {
                $.ajax({
                    url: '/AlertConf',
                    data: {
                        FID:FID
                    },
                    type: 'POST',
                    success: function (data) {
                        if (data == 0) {
                            $.messager.alert("错误提示", '登录信息出现变化,请重新登录');
                        } else if (data == 2){
                            $.messager.alert("错误提示", title + '失败!');
                        } else {
                            $.messager.alert("提示", title + '成功');
                        }
                        $('#dg').datagrid('reload');
                    }
                });
            }
        });

效果:

2.2修改后

第一步:在_Layout.cshtml中,合适的地方添加代码:

html 复制代码
    <script src="~/Scripts/sweetalert2/sweetalert2.min.js" type="text/javascript"></script>
    <link rel="stylesheet" href="~/Scripts/sweetalert2/sweetalert2.min.css" type="text/css" />

第二步:修改后的网页代码:

javascript 复制代码
$.ajax({
	url: '/AlertConf',
	data: {
		FID:FID
	},
	type: 'POST',
	success: function (data) {
		if (data == 0) {
			$.messager.alert("错误提示", '登录信息出现变化,请重新登录');
		} else if (data == 2){
			$.messager.alert("错误提示", title + '失败!');
		} else {
            // 弹出一个消息提示框
                    Swal.fire({
                        icon: 'success', // 消息提示框的图标,可以设置为'success'、'error'、'warning'等
                        title: '提示',
                        text: title + '成功', // 要显示的消息文本
                        timer: 1000, // 消息框自动关闭的时间(毫秒)
                        showConfirmButton: false, // 不显示确认按钮
                        position: 'top',
                        toast: true,
                        showClass: {
                            popup: 'animate__animated animate__fadeIn'  //直接显示,没有动画
                            //icon: 'animate__animated animate__fadeIn'
                        }
                    });
		}
		$('#dg').datagrid('reload');
	}
});

效果,直接在页面div的中间添加toast弹窗:

三、总结

后来查看了,其实不只asp可以用,vue等其实网页都可以用。而且这次还发现了,还可以在更多动画(Animate.css | A cross-browser library of CSS animations.

附:参考文章:

Asp.Net Core MVC 里使用 sweetalert 和 toastr 和 bootboxjs 提示样式-CSDN博客

附:本文使用到的组件官网

2)动画Animate:Animate.css | A cross-browser library of CSS animations.

相关推荐
成都被卷死的程序员1 小时前
响应式网页设计--html
前端·html
fighting ~1 小时前
react17安装html-react-parser运行报错记录
javascript·react.js·html
Black蜡笔小新9 小时前
网页直播/点播播放器EasyPlayer.js播放器OffscreenCanvas这个特性是否需要特殊的环境和硬件支持
前端·javascript·html
csdn56597385013 小时前
快速实现 iframe 嵌套页面
javascript·html·iframe
Suckerbin14 小时前
黑客基础之HTML
前端·html
NiNg_1_23415 小时前
前端CSS3 渐变详解
前端·css·html
前端Hardy17 小时前
HTML&CSS 打造的酷炫菜单选项卡
前端·javascript·css·html·css3
脑瓜疼啊脑瓜疼17 小时前
Java中的HTML元素设置:背景、列表与超链接
java·开发语言·html
Qhumaing18 小时前
html文本元素
前端·html
YUJIANYUE18 小时前
原生html+js输入框下拉多选带关闭模块完整案例
javascript·css·html