如何在不使用javascript的情况下以纯jquery获取文档的高度和宽度。
我知道$(document).height()$(document).width(),但是我想在javascript中做到这一点。

我的意思是页面的高度和宽度。

最佳答案

var height = document.body.clientHeight;
var width = document.body.clientWidth;

检查:this article以获得更好的解释。

关于javascript - 如何在不使用jQuery的情况下获取文档的高度和宽度,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/5484578/

10-10 02:52