function expand(el)
{
var childObj = document.getElementById("child" + el)
var box = document.getElementById("box"枝袜)
if (childObj.style.display == 'none')
{
childObj.style.display = 'block'
box.style......//按照上猛孝激面的写慎碧法就可以了
}
else
{
childObj.style.display = 'none'
}
return
}
</SCRIPT>
1、首先,要创建标签,使用document.createElement函数,如图创建div标签。告激租使用其className设置class,id设置id,style设置样式。
2、样式的设置也可以袜兆分铅行项进行。如图是分项设置其left,top,display,position,width几个样式。
3、通过设置标签的innerHTML属性可以直接给其添加子标签以及子标签的样式。当然,也可以分项分层添加标签。
4、设置好标签(如图是div标签,变量名box),使用document.body.appendChild添加标签到body当中。
5、标签添加以后,依然可以修改样式,如图是使用document.getElementById方法根据id获取标签,修改style。
6、标签添加以后,也可以给其添加和删除event处理。如图是使用jQuery给id为img-preview-box的标签添加hover鼠标经过的处理。
这是是JavaScript版本的,涉及DOM的知识,也可以用 jQuery, 楼主看一下:<!DOCTYPE html PUBLIC "-/咐厅袭/W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/htmlcharset=gb2312" />
<title>衡兄无标题文档</伏咐title>
<style type="text/css">
.div{ width:100pxheight:100pxbackground:#f00}
</style>
</head>
<body>
<div><a id="xx"></a></div>
<script type="text/javascript">
window.onload = function(){
document.getElementById("xx").parentNode.setAttribute("class","div")
}
</script>
</body>
</html>
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)