本文实例讲述了JS+CSS实现Div弹出窗口同时背景变暗的方法。分享给大家供大家参考。具体实现方法如下: 复制代码 代码如下: JS+CSS实现的Div弹出窗口,同时背景变暗 <br /> function locking(){ <br /> document.all.ly.style.display="block"; <br /> document.all.ly.style.width=document.body.clientWidth; <br /> document.all.ly.style.height=document.body.clientHeight; <br /> document.all.Layer2.style.display='block'; <br /> } <br /> function Lock_CheckForm(theForm){ <br /> document.all.ly.style.display='none';document.all.Layer2.style.display='none';<br /> return false; <br /> } <br /> <br /> <!--<br /> .STYLE1 {font-size: 12px}<br /> a:link {<br /> color: #000;<br /> text-decoration: none;<br /> }<br /> a:visited {<br /> text-decoration: none;<br /> }<br /> a:hover {<br /> text-decoration: none;<br /> }<br /> a:active {<br /> text-decoration: none;<br /> }<br /> --><br />