自定义alert窗口样式

<!DOCTYPE html>
<html lang="en">
<head>
	<meta charset="UTF-8">
	<title>Document</title>
	<style type="text/css">
		body{background:blue}
		.shield{position: absolute;left:0;top:0;width:100%;background:rgba(255,255,255,.4);text-align:center;z-index:25px;filter:alpha(opacity=50);}
		.fram{position:absolute;left:50%;top:50%;margin-left:-225px;margin-top:-75px;width:450px;height:150px;
			background: #ff0000;text-align: center;line-height: 150px;z-index: 300}
	</style>
</head>
<body>
	<script type="text/javascript">
		window.alert = function(str){ 
			//创建一个div用来遮盖整个body
			var shield = document.createElement("DIV"); 
			shield.id = "shield"; 
			shield.setAttribute("class","shield");
			shield.style.height = document.body.scrollHeight+"px"; 
			//创建一个div放置alert内容
			var alertFram = document.createElement("DIV"); 
			alertFram.id="alertFram"; 
			alertFram.setAttribute("class","fram");
			strHtml = "<ul style=\"list-style:none;margin:0px;padding:0px;width:100%\">\n"; 
			strHtml += " <li style=\"background:#DD828D;text-align:left;padding-left:20px;font-size:14px;font-weight:bold;height:25px;line-height:25px;border:1px solid #F9CADE;\">[自定义提示]</li>\n"; 
			strHtml += " <li style=\"background:#fff;text-align:center;font-size:12px;height:120px;line-height:120px;border-left:1px solid #F9CADE;border-right:1px solid #F9CADE;\">"+str+"</li>\n"; 
			strHtml += " <li style=\"background:#FDEEF4;text-align:center;font-weight:bold;height:25px;line-height:25px; border:1px solid #F9CADE;\"><input type=\"button\" value=\"确 定\" οnclick=\"doOk()\" /></li>\n"; 
			strHtml += "</ul>\n"; 
			alertFram.innerHTML = strHtml; 
			document.body.appendChild(alertFram); 
			document.body.appendChild(shield); 
			this.doOk = function(){ 
				alertFram.style.display = "none"; 
				shield.style.display = "none"; 
			} 
			alertFram.focus(); 
			document.body.onselectstart = function(){return false;}; 
		} 
			alert("10");
	</script>
</body>
</html>

  

转载于:https://www.cnblogs.com/yanxinhua/p/6025441.html

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值