Skip to content

Instantly share code, notes, and snippets.

@JacobHsu
Last active November 19, 2015 14:25
Show Gist options
  • Save JacobHsu/ccef3756b9e95bc0e2fb to your computer and use it in GitHub Desktop.
Save JacobHsu/ccef3756b9e95bc0e2fb to your computer and use it in GitHub Desktop.
瀏覽器窗口可視區域大小 在不同瀏覽器都適用的 JavaScript 方案
<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
</head>
<body>
<script type="text/javascript">
var w= document.documentElement.clientWidth || document.body.clientWidth;
var h= document.documentElement.clientHeight || document.body.clientHeight;
document.write("Width:"+w+"<br>"+"Height:"+h)
</script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment