jsポップアップウィンドウを実現し、ページが灰色になり操作不可能な例

7043 ワード

<html>
<head>
<title>title>
<script>
function show()  //         
{
   var hideobj=document.getElementById("hidebg");
   hidebg.style.display="block";  //     
   hidebg.style.height=document.body.clientHeight+"px";  //               
   document.getElementById("hidebox").style.display="block";  //     
}
function hide()  //         
{
   document.getElementById("hidebg").style.display="none";
   document.getElementById("hidebox").style.display="none";
}
script>
<style>
   body { margin:0px;padding:0px;text-align: center;}
   #hidebg { position:absolute;left:0px;top:0px;
      background-color:#000;
      width:100%;  /*     100%,               */
      filter:alpha(opacity=60);  /*      60%*/
      opacity:0.6;  /* IE          60%*/
      display:none; /* http://www.jb51.net */
      z-Index:2;}
   #hidebox { position:absolute;width:400px;height:300px;top:200px;left:30%;background-color:#fff;display:none;cursor:pointer;z-Index:3;}
   #content { text-align:center;cursor:pointer;z-Index:1;}
style>
head>
<body>
<div id="hidebg">div>
<div id="hidebox" onClick="hide();">    div>
<div id="content" onClick="show();">    div>
body>
html>