日期:2014-05-17 浏览次数:20663 次
<!DOCTYPE html>
<html>
<head>
<style>
* {margin:0px;padding:0px;}
#page {width:900px;margin-right:auto;margin-left:auto;background:#ccc;}
#d1,#d2,#d3 {width:300px;height:100px;float:left;}
#d1 {background:red;}
#d2 {background:green;}
#d3 {background:blue;}
</style>
</head>
<body>
<div id="page">
<div id="d1">div</div>
<div id="d2">div</div>
<div id="d3">div</div>
</div>
</body>
</html>
window.onload=function() {
var oDiv1=document.getElementByID("d1");
var oDiv2=document.getElementByID("d2");
var oDiv3=document.getElementByID("d3");
oDiv2.style.width=(/*d1和d3的表达式*/);
}