測試文字功能,小工具,標題

記錄很重要,不然會浪費很多時間在找以前的記憶

一個人的氣度,決定他未來的高度。

2015年4月17日 星期五

Javascript 抓window的width,抓視窗的寬度

 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>



沒有留言:

張貼留言