Home >Web Front-end >JS Tutorial >Use documentElement to correctly obtain the size of the currently visible area_javascript tips

Use documentElement to correctly obtain the size of the currently visible area_javascript tips

WBOY
WBOYOriginal
2016-05-16 16:41:111382browse

Other methods are not applicable. Only this documentElement can correctly obtain the size of the current visible area

var w = parseInt(document.documentElement.clientWidth);
var h = parseInt(document.documentElement.clientHeight);
Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn