Js 订制自己的AlertBox(信息提示框)


Posted in Javascript onJanuary 09, 2009

本文制作一个用户自定义的AlertBox,效果如图:
Js 订制自己的AlertBox(信息提示框)
js文件中插入如下代码:

// JScript 文件 
// constants to define the title of the alert and button text. 
var ALERT_TITLE = "Oops!"; 
var ALERT_BUTTON_TEXT = "Close"; 
// over-ride the alert method only if this a newer browser. 
// Older browser will see standard alerts 
if(document.getElementById) { 
window.alert = function(txt) { 
createCustomAlert(txt); 
} 
} 
function createCustomAlert(txt) { 
// shortcut reference to the document object 
d = document; 
// if the modalContainer object already exists in the DOM, bail out. 
if(d.getElementById("modalContainer")) return; 
// create the modalContainer div as a child of the BODY element 
mObj = d.getElementsByTagName("body")[0].appendChild(d.createElement("div")); 
mObj.id = "modalContainer"; 
// make sure its as tall as it needs to be to overlay all the content on the page 
mObj.style.height = document.documentElement.scrollHeight + "px"; 
// create the DIV that will be the alert 
alertObj = mObj.appendChild(d.createElement("div")); 
alertObj.id = "alertBox"; 
// MSIE doesnt treat position:fixed correctly, so this compensates for positioning the alert 
if(d.all && !window.opera) alertObj.style.top = document.documentElement.scrollTop + "px"; 
// center the alert box 
alertObj.style.left = (d.documentElement.scrollWidth - alertObj.offsetWidth)/2 + "px"; 
// create an H1 element as the title bar 
h1 = alertObj.appendChild(d.createElement("h1")); 
h1.appendChild(d.createTextNode(ALERT_TITLE)); 
// create a paragraph element to contain the txt argument 
msg = alertObj.appendChild(d.createElement("p")); 
msg.innerHTML = txt; 
// create an anchor element to use as the confirmation button. 
btn = alertObj.appendChild(d.createElement("a")); 
btn.id = "closeBtn"; 
btn.appendChild(d.createTextNode(ALERT_BUTTON_TEXT)); 
btn.href = "#"; 
// set up the onclick event to remove the alert when the anchor is clicked 
btn.onclick = function() { removeCustomAlert();return false; } 
// removes the custom alert from the DOM function removeCustomAlert() { 
// document.getElementsByTagName("body")[0].removeChild(document.getElementById("modalContainer")); 
} 
// removes the custom alert from the DOM 
function removeCustomAlert() 
{ 
document.getElementsByTagName("body")[0].removeChild(document.getElementById("modalContainer")); 
}

将如下代码粘贴到你的HTML你的HTML的HEAD部分。 
<script type="text/javascript" src="include/customAlertBox.js"></script> 
<!-- Paste this code into your external style sheet or the 
CSS section of your HTML document --> 
<style type="text/css"> 
#modalContainer { 
background-color:transparent; 
position:absolute; 
width:100%; 
height:100%; 
top:0px; 
left:0px; 
z-index:10000; 
} 
#alertBox { 
position:relative; 
width:300px; 
min-height:100px; 
margin-top:50px; 
border:2px solid #000; 
background-color:#F2F5F6; 
background-image:url(alert.png); 
background-repeat:no-repeat; 
background-position:20px 30px; 
} 
#modalContainer > #alertBox { 
position:fixed; 
} 
#alertBox h1 { 
margin:0; 
font:bold 0.9em verdana,arial; 
background-color:#78919B; 
color:#FFF; 
border-bottom:1px solid #000; 
padding:2px 0 2px 5px; 
} 
#alertBox p { 
font:0.7em verdana,arial; 
height:50px; 
padding-left:5px; 
margin-left:55px; 
} 
#alertBox #closeBtn { 
display:block; 
position:relative; 
margin:5px auto; 
padding:3px; 
border:1px solid #000; 
width:70px; 
font:0.7em verdana,arial; 
text-transform:uppercase; 
text-align:center; 
color:#FFF; 
background-color:#78919B; 
text-decoration:none; 
} 
</style>

在你的HTML文档的Body部分插入如下代码:
<input type="button" value = "Test the alert" onclick="alert('This is a custom alert dialog that was created by overriding the window.alert method.');">

Javascript 相关文章推荐
JavaScript ECMA-262-3 深入解析.第三章.this
Sep 28 Javascript
Javascript 命名空间模式
Nov 01 Javascript
js读写cookie实现一个底部广告浮层效果的两种方法
Dec 29 Javascript
Jquery 监视按键,按下回车键触发某方法的实现代码
May 11 Javascript
删除条目时弹出的确认对话框
Jun 05 Javascript
javascript搜索框点击文字消失失焦时文本出现
Sep 18 Javascript
使用Raygun对Node.js应用进行错误处理的方法
Jun 23 Javascript
在Node.js应用中使用Redis的方法简介
Jun 24 Javascript
使用jQuery.form.js/springmvc框架实现文件上传功能
May 12 Javascript
JavaScript与java语言有什么不同
Sep 22 Javascript
详解解决Vue相同路由参数不同不会刷新的问题
Oct 12 Javascript
vue项目开启Gzip压缩和性能优化操作
Oct 26 Javascript
通用JS事件写法实现代码
Jan 07 #Javascript
javascript 表单的友好用户体现
Jan 07 #Javascript
JavaScript Prototype对象
Jan 07 #Javascript
开发跨浏览器javascript常见注意事项
Jan 01 #Javascript
用于判断用户注册时,密码强度的JS代码
Jan 01 #Javascript
很全的显示阴历(农历)日期的js代码
Jan 01 #Javascript
js继承 Base类的源码解析
Dec 30 #Javascript
You might like
搜索引擎技术核心揭密
2006/10/09 PHP
Laravel框架实现利用监听器进行sql语句记录功能
2018/06/06 PHP
脚本收藏iframe
2006/07/21 Javascript
js 事件小结 表格区别
2007/08/13 Javascript
js对象数组按属性快速排序
2011/01/31 Javascript
JS+ACTIVEX实现网页选择本地目录路径对话框
2013/03/18 Javascript
用js+iframe形成页面的一种遮罩效果的具体实现
2013/12/31 Javascript
jQuery 仿百度输入标签插件附效果图
2014/07/04 Javascript
图文详解Heap Sort堆排序算法及JavaScript的代码实现
2016/05/04 Javascript
JS判断字符串变量是否含有某个字串的实现方法
2016/06/03 Javascript
表单中单选框添加选项和移除选项
2016/07/04 Javascript
一个简易的js图片轮播效果
2017/07/22 Javascript
vue中使用localstorage来存储页面信息
2017/11/04 Javascript
vue-router启用history模式下的开发及非根目录部署方法
2018/12/23 Javascript
深入了解query和params的使用区别
2019/06/24 Javascript
Layui带搜索的下拉框的使用以及动态数据绑定方法
2019/09/28 Javascript
vue点击按钮动态创建与删除组件功能
2019/12/29 Javascript
python TCP Socket的粘包和分包的处理详解
2018/02/09 Python
浅谈python常用程序算法
2019/03/22 Python
Django网络框架之创建虚拟开发环境操作示例
2019/06/06 Python
Python3自定义http/https请求拦截mitmproxy脚本实例
2020/05/11 Python
Python常驻任务实现接收外界参数代码解析
2020/07/21 Python
Python实现微信表情包炸群功能
2021/01/28 Python
HTML5本地存储localStorage、sessionStorage基本用法、遍历操作、异常处理等
2014/05/08 HTML / CSS
Html5实现二维码扫描并解析
2016/01/20 HTML / CSS
通过canvas转换颜色为RGBA格式及性能问题的解决
2019/11/22 HTML / CSS
奢华时尚的独特视角:La Garçonne
2018/06/07 全球购物
贝佳斯官方网站:Borghese
2020/05/08 全球购物
旺仔牛奶广告词
2014/03/20 职场文书
3分钟演讲稿
2014/04/30 职场文书
反邪教宣传工作方案
2014/05/07 职场文书
求职信怎么写
2014/05/23 职场文书
纪检监察立案决定书
2015/06/24 职场文书
求职自我评价参考范文
2019/05/16 职场文书
MySQL基础(一)
2021/04/05 MySQL
pytorch锁死在dataloader(训练时卡死)
2021/05/28 Python