|
热门文章 |
|
|
|
|
在空白处点击关闭div层 |
来源:畅无忧设计 更新时间:2011/10/22 21:07:37 阅读次数: 我要投稿 |
|
<html> <head> <script type="text/javascript"> document.onclick=function(){ document.getElementById("div").style.display="none"; } function clickDiv(div){ div.style.display=""; var b = window.event; b.cancelBubble = true; } </script> </head> <body> <div onclick="clickDiv(this)" id="div" style="background-color:yellow;border:1px solid red;width:300px;height:200px;position:absolute;left:300px;top:200px;"> </div> </body> </html> |
|
上一篇文章: javascript实现可以拖动的层示例(层拖动,兼容IE/FF)下一篇文章: Js弹出层,可自定义大小,双击关闭层 |
|
|