gpt4 book ai didi

jquery - 窗口调整大小时获取文档的大小

转载 作者:太空宇宙 更新时间:2023-11-04 13:38:39 25 4
gpt4 key购买 nike

当我调整窗口大小时,我可以找到窗口的大小。像这样

<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>

现在我想在调整窗口大小时获取文档大小。每次调整窗口大小时如何获取大小。

最佳答案

$(window).width(); // returns width of browser viewport

$(document).width(); // returns width of HTML document

http://api.jquery.com/width/

关于jquery - 窗口调整大小时获取文档的大小,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15269850/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com