Javascript 抓window的width,抓視窗的寬度
<script type="text/javascript">
//user的可視角剩下的高度跟寬度
document.write("document.documentElement.clientHeight:" + document.documentElement.clientHeight + "<br/>");
document.write("document.documentElement.clientWidth:" + document.documentElement.clientWidth + "<br/>");
//桌面設定的高度跟寬度
document.write("window.screen.height:" + window.screen.height + "<br/>");
document.write("window.screen.width:" + window.screen.width + "<br/>");
//扣到工具例的高度跟寬度
document.write("window.screen.availHeight:" + window.screen.availHeight + "<br/>");
document.write("window.screen.availWidth:" + window.screen.availWidth + "<br/>");
</script>
沒有留言:
張貼留言