87,995
社区成员




<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title> New Document </title>
<meta name="Generator" content="EditPlus">
<meta name="Author" content="">
<meta name="Keywords" content="">
<meta name="Description" content="">
<script type="text/javascript">
<!--
function side(a){
if(a.innerHTML == "关闭边栏"){
document.getElementById("div2").style.display= "none";
document.getElementById("div1").style.width = "400px";
document.getElementById("div2").style.width = "0px";
a.innerHTML = "打开边栏";
}else{
document.getElementById("div2").style.display= "";
document.getElementById("div1").style.width = "300px";
document.getElementById("div2").style.width = "100px";
a.innerHTML = "关闭边栏";
}
}
//-->
</script>
</head>
<body>
<div style="margin-left: 320px;" onclick="side(this)" >关闭边栏</div><br />
<div id="div1" style="float: left;width:300px;height:300px;background-color:#697896">
11111111
</div>
<div id="div2" style="float: left;width:100px;height:300px;background-color:#eeeeee" >
222222222
</div>
</body>
</html>