在坐Jsp界面Ajax效果时,总想实现主界面中,单击按钮弹出个小界面,使得主界面处于被锁状态,弹出的小界面方便我们编辑数据。有很多方式都可以解决,参考其它系统中的一种方式,实现起来比较方便:即 document.getElementById('Div').style.display设置其熟悉值来实现层的隐藏或显示。
准备工作:
一、编辑test.jsp
<%@ page language="java" contentType="text/html; charset=UTF-8"
pageEncoding="UTF-8"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Insert title here</title>
<script type="text/javascript" src="js/jquery-1.4.4.js"></script>
<script type="text/javascript" src="js/show.js"></script>
</head>
<body>
<input type="submit" id="showid" value="show" οnclick="javaScript:showdiv('divShow');" />
<div id="sDiv" style="
filter:alpha(opacity=30);
-moz-opacity:0.3;opacity:0.3;
background-color:#fff;
width:100%;
height:100%;
z-index:1