代码改变世界

JS创建htmL元素

2010-11-20 15:49  ※森林小居※  阅读(716)  评论(0)    收藏  举报

var newBgDiv = document.createElement("div"); newBgDiv.id = bgid; newBgDiv.style.position = "absolute"; newBgDiv.style.zIndex = "9998"; newBgDiv.style.left=0; newBgDiv.style.top=0; newBgDiv.style.width = width; newBgDiv.style.height = height; newBgDiv.style.backgroundColor = "#ccc"; newBgDiv.style.filter = "alpha(opacity=50)"; newBgDiv.style.mozopacity = "0.5"; document.body.appendChild(newBgDiv);