js点击页⾯其他地⽅关闭弹出层(⽰例代码)复制代码代码如下:
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>⽆标题⽂档</title>
<style type="text/css">
<!--
*{font-size:12px;font-family:Verdana, Geneva, sans-serif;line-height:14px}
a{color:#039}
a:hover{color:#f60}
.pop{position:absolute;left:40%;top:40%;width:300px;height:100px;background:#eee;border:1px solid #ccc}
.pop_head{position:relative;height:20px;background:#ccc}
.pop_head a{position:absolute;right:8px;line-height:20px;color:#000;text-decoration:none}
.pop_head a:hover{color:#f60;text-decoration:none}
.pop_body{padding:8px}
-->
</style>
</head>
<body>
<!--⾸先设置⼀个层:-->
<div id="pop" class="pop" onclick="show(event,'pop');">
<div class="pop_head"><a href="javascript:void(0);" onclick="hide('pop')">关闭</a></div>
<div class="pop_body">谢谢光临……</div>
html5开发示例</div>
<!--弹出层的按钮:-->
<a href="javascript:void(0);" onclick="show(,'pop');">弹出按钮</a>
<script type="text/javascript">
var url = '#';
function show(evt,o){
var o = ElementById(o);
o.style.display = "";
}
function hide(o){
var o = ElementById(o);
o.style.display = "none";
window.location = url;
}
</script>
</body>
</html>
1.在调⽤弹出⽅法的时候要传⼊⼀个事件对象:event。
2.弹出⽅法要加⼊事件绑定代码。
3.要有个全局的js代码,⽤来执⾏点击其他部位的时候调⽤隐藏弹出层的⽅法。
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论