博客首页 注册 建议与交流 排行榜 加入友情链接
推荐 投诉 搜索: 帮助

我的IT之旅

Life is a journey
klx.cublog.cn


获取页面高度,宽度

<html>
<script>
function text(){
if (window.innerWidth) {
                alert(1);
                theWidth = window.innerWidth;
                theHeight = window.innerHeight;
} else if (document.compatMode == 'CSS1Compat') {
                alert(2);
                theWidth = document.documentElement.clientWidth;
                theHeight = document.documentElement.clientHeight;
} else if (document.body) {
                alert(3);
                theWidth = document.body.clientWidth;
                theHeight = document.body.clientHeight;
}
           
alert(theWidth);
alert(theHeight);
}
</script>
<body>
<input type="button" value="开始" onclick="text()">
12121
</body>
</html>

发表于: 2008-06-26 ,修改于: 2008-06-26 21:42,已浏览192次,有评论0条 推荐 投诉


网友评论

发表评论