日期:2014-05-16 浏览次数:20760 次
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title></title>
</head>
<body style="margin:0;">
<select><option >test</option></select>
<input> 
<input type=button value="点击将页面灰掉" onclick="disableBodyArea();"> 
<br><br><br><br>
<br><br><br><br>
<select><option >test</option></select>
<br><br><br><br>
<br><br><br><br>
<select><option >test</option></select>
<br><br><br><br>
<br><br><br><br>
</body>
</html>
<script>
//这里初始化遮盖面的,使用IFRAME
window.onload=function()
  {
     var iframe=document.createElement("iframe");
     iframe.id="mark";
     iframe.style.display='none';
     iframe.style.position='absolute';
     iframe.style.top='0px';
     iframe.style.left='0px';
     iframe.style.margin='0px';
     iframe.style.width='100%';
     iframe.style.height='100%';
     iframe.style.backgroundColor='#666666';
     iframe.style.zIndex=100;
     iframescrolling="no";
     iframe.frameborder="0";
     if(document.all)//ie
       iframe.style.filter="Alpha(opacity=60)";
     else
       iframe.style.opacity="0.6";
     document.body.appendChild(iframe);      
  }
function disableBodyArea(){
    document.getElementById("mark").style.display=""
}
</script>