87,990
社区成员
发帖
与我相关
我的任务
分享<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gbk" />
<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; position:absolute}
.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');" onMouseOut="hide(event,'pop')">
<div class="pop_head"><a href="javascript:void(0);" onclick="hide(event,'pop')">关闭</a></div>
<div class="pop_body"><p>谢谢光临……</p></div>
</div>
<!--弹出层的按钮:-->
<a onmouseover="show(event,'pop');">鼠标移动至此显示弹出层</a>
<script type="text/javascript">
var url = '#';
function show(evt,o){
evt.stopPropagation?evt.stopPropagation():evt.cancelBubble=true;
d=document.getElementById(o);
d.style.top="0px";
d.style.left="0px";
var o = document.getElementById(o);
o.style.display = "";
}
function hide(evt,o){
var o = document.getElementById(o);
o.style.display = "none";
window.location = url;
}
</script>
</body>
</html><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; position:absolute}
.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');" onMouseOut="hide(event,'pop')">
<div class="pop_head"><a href="javascript:void(0);" onclick="hide(event,'pop')">关闭</a></div>
<div class="pop_body"><p>谢谢光临……</p></div>
</div>
<!--弹出层的按钮:-->
<a onmouseover="show(event,'pop');">鼠标移动至此显示弹出层</a>
<script type="text/javascript">
if(typeof(HTMLElement) != "undefined")
{
HTMLElement.prototype.contains = function(obj)
{
while(obj != null && typeof(obj.tagName) != "undefined")
{
if(obj == this)
return true;
obj = obj.parentNode;
}
return false;
};
}
var url = '#';
function show(evt,o){
evt.stopPropagation?evt.stopPropagation():evt.cancelBubble=true;
d=document.getElementById(o);
d.style.top="0px";
d.style.left="0px";
var o = document.getElementById(o);
o.style.display = "";
}
function hide(evt,o){
var to = evt.toElement || evt.relatedTarget
var o = document.getElementById(o);
if(o.contains(to)) return;
o.style.display = "none";
window.location = url;
}
</script>
</body>
</html>
