Last active
November 19, 2015 14:25
-
-
Save JacobHsu/ccef3756b9e95bc0e2fb to your computer and use it in GitHub Desktop.
瀏覽器窗口可視區域大小 在不同瀏覽器都適用的 JavaScript 方案
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!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