<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
網頁新手
求版友提示問題
感謝