我想在javascript中执行此操作:
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%";
};
但似乎根本没有调整div的大小。我在这里失踪了什么?
答案 0 :(得分:3)
style.width是一个字符串,所以你必须这样做
document.getElementById('flashdiv').style.width=w+"px";