<html>
<head>
<style type="text/css">
#obj{
width: 200px; //直接定义css宽200px
}
</style>
</head>
<body onload=init();>
<div id="obj"></div>
<script>
function init(){
alert(document.getElementById("obj").style.width);//取不到原本的200px
document.getElementById("top_logo").style.width = 640+"px";
alert(document.getElementById("obj").style.width);//取到640px
}
</script>
</body>
</html>
像这样一个简单的网页与脚本
我不懂 为什么取不到style里的200px
非得用Javascript覆写css后才会取到后来的640px
网页新手
求版友提示问题
感谢