我想搞个后台界面,用JS改变DIV(主要的是做展开或复原),部分代码我已写出,但我不想写重复的代码,所以。。。
Code
<!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/html; charset=utf-8" />
<title>无标题文档</title>
<style type="text/css">
#fir---{ width:125px; height:80px; border:1px red solid; background:#FF99FF;}
#fir-__{ width:125px; height:20px; background:#3366CC;}
#fir___{ width:125px; height:80px; border:1px red solid; background:#FF99FF;}
#fir_--{ width:125px; height:20px; background:#3366CC;}
</style>
<script language="javascript">
function syl()
{
if(document.getElementById("fir---").style.height=="80px")
{
document.getElementById("fir---").style.height="20px"
}
else
{
document.getElementById("fir---").style.height="80px"
}
}
</script>
</head>
<body>
<div id="fir---">
<div id="fir-__" onclick="syl()">
<center>系统设置</center>
</div>
</div>
<div id="fir___">
<div id="fir_--" onclick="syl()">
<center>会员设置</center>
</div>
</div>
</body>
</html>
我想JS中可以传参数,但不知道什么传...有关的资料希望各位大虾不要压箱底
最后一个很不幸的消息,我的分不多只有30分,希望不要看在分少就...我们是学技术的不是在表面做文章...