代码改变世界

js弹出层居中可移动

2011-07-12 14:15  呦菜  阅读(1978)  评论(2编辑  收藏  举报

最近又遇到了弹出层居中且能拖拽的问题,简单的把以前收集的代码集成了一下,形成了以下代码。

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<HTML>
<HEAD>
<TITLE> New Document </TITLE>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<META NAME="Author" CONTENT="">
<META NAME="Keywords" CONTENT="">
<META NAME="Description" CONTENT="">
<style type="text/css">
*
{
padding
:0px;
margin
:0px;
}
#Idiv
{
width
:300px;
height
:100px;
position
:absolute;
z-index
:1000;
border
:2px solid #ffffff;
background
:#ffffff;
}
</style>
<script langue="javascript">

function show()
{
var Idiv=document.getElementById("Idiv");
Idiv.style.display
="block";
//以下部分要将弹出层居中显示
Idiv.style.left=(document.documentElement.clientWidth-Idiv.clientWidth)/2+document.documentElement.scrollLeft+"px";
Idiv.style.top=(document.documentElement.clientHeight-Idiv.clientHeight)/2+document.documentElement.scrollTop-50+"px";//此处出现问题,弹出层左右居中,但是高度却不居中,显示在上部分,导致一 //部分不可见,于是暂时在下面添加margin-top


//以下部分使整个页面至灰不可点击
var procbg = document.createElement("div"); //首先创建一个div
procbg.setAttribute("id","mybg"); //定义该div的id
procbg.style.background ="#000000";
procbg.style.width
="100%";
procbg.style.height
="100%";
procbg.style.position
="fixed";
procbg.style.top
="0";
procbg.style.left
="0";
procbg.style.zIndex
="500";
procbg.style.opacity
="0.6";
procbg.style.filter
="Alpha(opacity=70)";

//以上部分也可以用csstext代替
// procbg.style.cssText="background:#000000;width:100%;height:100%;position:fixed;top:0;left:0;zIndex:500;opacity:0.6;filter:Alpha(opacity=70);";
//背景层加入页面
document.body.appendChild(procbg);
document.body.style.overflow
="hidden"; //取消滚动条


//以下部分实现弹出层的拖拽效果
var posX;
var posY;
Idiv.onmousedown
=function(e)
{
if(!e) e = window.event; //IE
posX = e.clientX - parseInt(Idiv.style.left);
posY
= e.clientY - parseInt(Idiv.style.top);
document.onmousemove
= mousemove;
}
document.onmouseup
=function()
{
document.onmousemove
=null;
}
function mousemove(ev)
{
if(ev==null) ev = window.event;//IE
Idiv.style.left = (ev.clientX - posX) +"px";
Idiv.style.top
= (ev.clientY - posY) +"px";
}

}
function closeDiv() //关闭弹出层
{
var Idiv=document.getElementById("Idiv");
Idiv.style.display
="none";
document.body.style.overflow
="auto"; //恢复页面滚动条
document.getElementById("mybg").style.display="none";
}

</script>
</HEAD>

<BODY>
<div><a href="javascript:void(0)" id="show" onclick="show()">点击打开弹出层!</div>
<div id="Idiv" style="display:none;"><a href="javascript:void(0)" onclick="closeDiv()">点击关闭层</a></div>
相关链接:http://blog.csdn.net/mathewsking/article/details/4539997 (关于document.body 和 document.documentElement 的区别 )

</BODY>
</HTML>

对于这段代码感觉不是很满意,有很多bug,比如在拖动层的时候下面的连接部分会高亮一下,不清楚是什么原因,希望大家批评指教!

对于这段代码的修改已在修正版发布,改正了此版出现的错误~~