div模态层示例
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" style="height: 100%;">
<head>
<title>任务量分配 </title>
</head>
<body style="border-width: 0px; padding: 0px; margin: 0px; padding-top: 0px; height: 100%;
position: relative;">
<div style="padding: 0px; margin: 0px; border-width: 0px; overflow: auto; position: absolute;
left: 0px; top: 0px; right: 0px; bottom: 0px; z-index: 0;">
<form name="form1" method="post" id="form1" style="margin-left: 10px;">
<div>
<table style="width: 100%; border: 1px solid #B5CAE3; background-color: #DCECF4;
height: 40px; width: 800px;">
<tr>
<td>
<table style="display: inline-block;">
<tr>
<td style="width: 50px; text-align: right;">
考试<span style="color: red;">*</span>
</td>
<td>
<select name="ddlGrade" onchange="javascript:setTimeout('__doPostBack(\'ddlGrade\',\'\')', 0)"
id="ddlGrade">
</select>
</td>
<td style="width: 40px; text-align: right;">
科目<span style="color: red;">*</span>
</td>
<td>
<select name="ddlCourse" id="ddlCourse">
<option value="010101003716010518010003">语文</option>
</select>
</td>
</tr>
</table>
<table style="display: inline-block; margin-left: 10px;">
<tr>
<td id="btnSearchContainer" style="padding-left: 10px;">
<input type="submit" name="btnSearch" value="查询" id="btnSearch" class="butn" />
</td>
<td id="btnAvgAssignContainer" style="padding-left: 10px;">
<input type="submit" name="btnAvgAssign" value="平均分配" id="btnAvgAssign" class="butn" />
</td>
</tr>
</table>
</td>
</tr>
</table>
</div>
</form>
</div>
<div style="padding: 0px; margin: 0px; border-width: 0px; position: absolute; left: 0px;
top: 0px; right: 0px; bottom: 0px; z-index: 1; display: table-cell; filter: alpha(opacity=5);
opacity: 0.05; background-color: White;">
</div>
<div style="padding: 0px; margin: 0px; border-width: 0px; position: absolute; left: 0px;
top: 0px; right: 0px; bottom: 0px; z-index: 2; display: table-cell;">
hello
</div>
</body>
</html>
div模态层示例的更多相关文章
- JavaScript内容梳理 示例之模态对话框 示例之全选和反选以及取消 示例之后台管理左侧菜单
<!DOCTYPE html> <!--示例之模态对话框--> <html lang="en"> <head> <meta c ...
- js+css实现模态层效果
在做web前端的时候,有些时候会涉及到模态层,在此提供一种实现思路.希望对大家实用.先贴效果吧: 模态层效果 以下说说在写模态层的时候的思路:通过可配置的參数width,height,title以及c ...
- openlayers4 入门开发系列之地图模态层篇(附源码下载)
前言 openlayers4 官网的 api 文档介绍地址 openlayers4 api,里面详细的介绍 openlayers4 各个类的介绍,还有就是在线例子:openlayers4 官网在线例子 ...
- jquery实现div遮罩层
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/ ...
- js div浮动层拖拽效果代码
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/ ...
- arcgis api 3.x for js 入门开发系列二十二地图模态层(附源码下载)
前言 关于本篇功能实现用到的 api 涉及类看不懂的,请参照 esri 官网的 arcgis api 3.x for js:esri 官网 api,里面详细的介绍 arcgis api 3.x 各个类 ...
- div 遮罩层 弹窗
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/ ...
- position:fixed和scroll实现div浮动【示例】
前言 在自己建站的过程中,要实现一个div随滚动条浮动的效果,网上找了些示例不太好用,还是自己动手,丰衣足食,写的不好请大家谅解,毕竟我不是搞前端的,因为自己建站毕竟每一步都必须自己来,这边只是做个记 ...
- JS+CSS简单实现DIV遮罩层显示隐藏【转藏】
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/ ...
随机推荐
- ASP.NET 中HTML和Form辅助方法
Form辅助方法 Form最重要的属性就是action和method,action指明form中的数据被提交到哪里,method指明用什么方法,默认为GET,下面是一个简单的例子: <form ...
- poj2763
//Accepted 11676 KB 2344 ms /* source:poj2763 time :2015.5.29 by :songt */ /*题解: 树链剖分 基于边权,路径查询 wind ...
- Allegro padstack
在ALLEGRO中,建立PCB封装是一件挺复杂的事,而要建立FOOTPRINT,首先要有一个PAD,所以就要新建PADSTACK. 焊盘可以分两种,表贴焊盘和通孔焊盘,表贴焊盘结构相对简单,下面首先分 ...
- [Python Fabric] [SSH] Mac OS X 10.9 + Vagrant虚拟环境使用Python Fabric进行SSH远程登录的简单实验
1. ssh客户端生成key $ Generating public/private rsa key pair. Enter file in which to save the key (/Users ...
- Android 标题栏菜单设置与应用(popupWindow的应用)
效果图
- Java随笔三
1.接口: 1)接口不是类,不能使用new运算符实例化一个接口,而是对类的一组需求描述,这些类要遵循接口描述的统一格式进行定义.个人感觉像C语言中的函数在头文件中的预先声明,但是包含了一些类的特点,比 ...
- js 控制框架页面跳转 top.location.herf = "url"
top.location.href和localtion.href有什么不同 top.location.href=”url” 在顶层页面打开url(跳出框架) self.locatio ...
- 嵌入式linux应用程序移植方法总结
嵌入式linux应用程序移植方法总结 前段时间一直在做openCapwap的移植和调试工作,现在工作已接近尾声,编写本文档对前段工作进行一个总结,分享下openCapwap移植过程中的经验和感悟.江浩 ...
- JSTL的fn函数
JSTL使用表达式来简化页面的代码,这对一些标准的方法,例如bean的getter/setter方法,请求参数或者context以及session中的数据的访问非常方便,但是我们在实际应用中经常需要在 ...
- Spring3.0之后->Spring MVC过滤器-HiddenHttpMethodFilter
浏览器form表单只支持GET与POST请求,而DELETE.PUT等method并不支持,spring3.0添加了一个过滤器,可以将这些请求转换为标准的http方法,使得支持GET.POST.PUT ...