在 js 中,单击“其他位置”来关闭弹出层
发布时间:2023-09-04 14:01:25 所属栏目:教程 来源:
导读:代码如下:
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>无标题文档</title>
<style type="text/css">
<!--
*{font-size:12px;f
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>无标题文档</title>
<style type="text/css">
<!--
*{font-size:12px;f
代码如下: <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" style="display:none" onclick="show(event,'pop');"> <div class="pop_head"><a href="javascript:void(0);" onclick="hide('pop')">关闭</a></div> <div class="pop_body">谢谢光临……</div> </div> <!--弹出层的按钮:--> <a href="javascript:void(0);" onclick="show(event,'pop');">弹出按钮</a> <script type="text/javascript"> var url = '#'; function show(evt,o){ evt.stopPropagation?evt.stopPropagation():evt.cancelBubble=true; var o = document.getElementById(o); o.style.display = ""; } function hide(o){ var o = document.getElementById(o); o.style.display = "none"; window.location = url; } document.onclick=function(){hide('pop');} </script> </body> </html> 总结: 1.在调用弹出方法的时候要传入一个事件对象:event。 2.弹出方法要加入事件绑定代码。 3.要有个全局的js代码,用来执行点击其他部位的时候调用隐藏弹出层的方法。 (编辑:聊城站长网) 【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容! |
推荐文章
站长推荐