0
我試圖做到這一點在JavaScript調整一個div:如何儘快文檔加載
var w = 1280;
var h = 1024;
window.onload = function()
{
if (w > 0)
document.getElementById('flashdiv').style.width=w;
else
document.getElementById('flashdiv').style.width="100%";
alert(document.getElementById('flashdiv').style.width);
if (h > 0)
document.getElementById('flashdiv').style.height=h;
else
document.getElementById('flashdiv').style.height="100%";
};
,但它似乎沒有在所有的調整股利。我在這裏錯過了什麼?
只是好奇,爲什麼不使用jQuery這個? – frbry 2011-02-03 10:24:49