源码网商城,靠谱的源码在线交易网站 我的订单 购物车 帮助

源码网商城

js 点击页面其他地方关闭弹出层(示例代码)

  • 时间:2022-02-25 18:29 编辑: 来源: 阅读:
  • 扫一扫,手机访问
摘要:js 点击页面其他地方关闭弹出层(示例代码)
[u]复制代码[/u] 代码如下:
<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([b]event[/b],'pop');">弹出按钮</a> <script type="text/javascript"> var url = '#'; function show(evt,o){ [b]evt.stopPropagation?evt.stopPropagation():evt.cancelBubble=true; [/b]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>
[b]总结:[/b] 1.在调用弹出方法的时候要传入一个事件对象:event。 2.弹出方法要加入事件绑定代码。 3.要有个全局的js代码,用来执行点击其他部位的时候调用隐藏弹出层的方法。
  • 全部评论(0)
联系客服
客服电话:
400-000-3129
微信版

扫一扫进微信版
返回顶部