<html>
<head>
<title>JS+CSS实现带关闭按钮的DIV弹出窗口</title>
<script>
function locking(){
document.all.ly.style.display="block";
document.all.ly.style.width=document.body.clientWidth;
document.all.ly.style.height=document.body.clientHeight;
document.all.Layer2.style.display='block';

}
function Lock_CheckForm(theForm){
document.all.ly.style.display='none';document.all.Layer2.style.display='none';
return false;
}
</script>
<style type="text/css">
<!--
.STYLE1 {font-size: 12px}
a:link {
color: #FFFFFF;
text-decoration: none;
}
a:visited {
text-decoration: none;
}
a:hover {
text-decoration: none;
}
a:active {
text-decoration: none;
}
-->
</style>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
</head>
<body>
<p align="center">
<input type="button" value="弹出DIV" onClick="locking()" />
</p>
<div id="ly" style="position: absolute; top: 0px; filter: alpha(opacity=60); background-color: #777;
z-index: 2; left: 0px; display: none;">
</div>
<!-- 浮层框架开始 -->
<div id="Layer2" align="center" style="position: absolute; z-index: 3; left: expression((document.body.offsetWidth-540)/2); top: expression((document.body.offsetHeight-170)/10);
background-color: #fff; display: none;" >
<table width="540" height="300" border="0" cellpadding="0" cellspacing="0" style="border: 0 solid #e7e3e7;
border-collapse: collapse ;" >
<tr>
<td style="background-color: #73A2d6; color: #fff; padding-left: 4px; padding-top: 2px;
font-weight: bold; font-size: 12px;" height="10" valign="middle">
<div align="right"><a href=JavaScript:; class="STYLE1" onclick="Lock_CheckForm(this);">[关闭]</a> &nbsp;&nbsp;&nbsp;&nbsp;</div></td>
</tr>
<tr>
<td height="130" align="center">
</td>
</tr>
</table>
</div>
<!-- 浮层框架结束-->
</body>
</html>

<br><br><hr> </font></p>

最新文章

  1. 在数据库访问项目中使用微软企业库Enterprise Library,实现多种数据库的支持
  2. 父容器利用opacity设置透明后,子元素跟着变透明的解决方案
  3. DOM动画效果基础入门
  4. codeforces A. Bayan Bus(简单模拟)
  5. shell 工具
  6. java-MySQL存储过程
  7. Silverlight Application 无法调用js的方法
  8. 使用反射类、Class类获取指定的构造器并实例化对象
  9. attr 和 prop 区别
  10. sass ruby环境 安装配置,使用sublime text3 中sass
  11. ORA-28000: the account is locked解决
  12. Laravel 获取 Route Parameters (路由参数) 的 5 种方法
  13. Django 跨域请求
  14. java的TCP和UDP编程
  15. day 68 django 之api操作 | jQueryset集合与对象
  16. h5手机点击返回键,刷新页面
  17. ionic2添加 android平台出现的问题
  18. redis集群尝试
  19. YII2中验证码的使用
  20. Android学习笔记九:Service

热门文章

  1. UVa 11362 - Phone List
  2. 七、备忘录模式Memento(行为型模式)
  3. 大话设计模式宏观总结——创建型&amp;amp;结构型&amp;amp;行为型
  4. mysql安装后改动port号password默认字符编码
  5. 【POJ 2965】 The Pilots Brothers&#39; refrigerator
  6. 【POJ 3614】 Sunscreen
  7. MSP430 PIN 操作寄存器
  8. nginx初相识
  9. VUE移动端禁止双手放大缩小
  10. 基于ASP.Net Core开发一套通用后台框架记录-(项目的搭建)