码迷,mamicode.com
首页 > 其他好文 > 详细

dom 元素操作 增删改

时间:2015-07-05 12:18:06      阅读:135      评论:0      收藏:0      [点我收藏+]

标签:

//获取网页宽高
var sHeight=document.documentElement.scrollHeight;
var sWidth=document.documentElement.scrollWidth;


//获取可视区域宽高
var wHeight=document.documentElement.clientHeight;
var wWidth=document.documentElement.clientWidth;

//创建div
var oMask=document.createElement("div");
oMask.id="mask";
oMask.style.height=sHeight+"px";
oMask.style.width=sWidth+"px";
document.body.appendChild(oMask);


//创建div
var oLogin=document.createElement("div");
oLogin.id="login";
oLogin.innerHTML="<div class=‘loginCon‘><div id=‘close‘></div></div>";
document.body.appendChild(oLogin);

//获取dom元素的宽高
var dHeight=oLogin.offsetHeight;
var dWidth=oLogin.offsetWidth;


oLogin.style.left=(wWidth-dWidth)/2+"px";
oLogin.style.top=(wHeight-dHeight)/2+"px";

  

//删除元素
document.body.removeChild(oMask);
document.body.removeChild(oLogin);

  

dom 元素操作 增删改

标签:

原文地址:http://www.cnblogs.com/sunhe/p/4621923.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!