当我调整窗口大小时,我可以找到窗口的大小。像这样
<script type="text/javascript">
jQuery(window).resize(function () {
var width = jQuery(window).width();
var height = jQuery(window).height();
console.log(width);
console.log(height);
})
</script>
现在我想在调整窗口大小时获取文档大小。每次调整窗口大小时如何获取大小。