document.body.clientHeightが正しい値を返さない(以下のコードでは、0onloadと20onresizeを返します)
<html>
<head>
<title>Untitled</title>
<script type="text/javascript" >
function height1()
{
document.getElementById("viewheight").innerHTML = document.body.clientHeight;
}
</script>
</head>
<body onload="height1();" onresize="height1();">
<span id="viewheight"></span>
</body>
</html>
コメント.....plzヘルプ!