博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
js alert(“”)弹框 自定义样式
阅读量:6331 次
发布时间:2019-06-22

本文共 563 字,大约阅读时间需要 1 分钟。

首先用css渲染一个样式

#msg{
height: 2rem; text-align: center; position: fixed; top: 50%; margin-top: -1rem; line-height: 2rem; width: 100%;}#msg span{
color: #fff; background: rgba(0,0,0,0.6); height: 2rem; display: inline-block; padding: 0 3rem; border-radius: 5px;}

然后js匿名一个函数,用的时候就直接用alert事件就行了

function alert(e){    $("body").append("
"+e+"
"); clearmsg();}function clearmsg(){ var t = setTimeout(function(){ $("#msg").remove(); },2000)};

 

转载于:https://www.cnblogs.com/wangjae/p/6611187.html

你可能感兴趣的文章
SQL语言基础
查看>>
对事件处理的错误使用
查看>>
最大熵模型(二)朗格朗日函数
查看>>
深入了解setInterval方法
查看>>
html img Src base64 图片显示
查看>>
[Spring学习笔记 7 ] Spring中的数据库支持 RowMapper,JdbcDaoSupport 和 事务处理Transaction...
查看>>
FFMPEG中关于ts流的时长估计的实现(转)
查看>>
Java第三次作业
查看>>
【HDOJ 3652】B-number
查看>>
android代码混淆笔记
查看>>
Codeforces Round #423 (Div. 2, rated, based on VK Cup Finals) C. String Reconstruction 并查集
查看>>
BMP文件的读取与显示
查看>>
Flash文字效果
查看>>
各种排序算法总结篇(高速/堆/希尔/归并)
查看>>
使用c#訪问Access数据库时,提示找不到可安装的 ISAM
查看>>
Highcharts X轴纵向显示
查看>>
windows 注册表讲解
查看>>
【算法】论平衡二叉树(AVL)的正确种植方法
查看>>
基于DDD的现代ASP.NET开发框架--ABP系列之1、ABP总体介绍
查看>>
【原】东拼西凑PBR(1):PBR基础
查看>>