gpt4 book ai didi

javascript - 将值inner.Width 和inner.Height 应用于body

转载 作者:行者123 更新时间:2023-11-28 20:52:56 24 4
gpt4 key购买 nike

基本问题...

如何将innerWidth和innerHeight的值应用到body,以便它适应屏幕分辨率?!使其响应。

你如何用 Javascript/jquery 编写这个?!如果可能的话示例...

编辑////这将是代码?

这会让奇迹发生吗?!?!

$(window).load(function() {
var h = $(window).height();
var w = $(window).width();

$('body').css({"height": h+'px', "width": w+'px'});
});

最佳答案

.innerWidth() method returns the width of the element, including left and right padding, in pixels. This method is not applicable to window and document objects; for these, use .width() instead.

var h = $(window).height();
var w = $(window).width();

$('body').css({"height": h+'px', "width": w+'px'});

关于javascript - 将值inner.Width 和inner.Height 应用于body,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12094228/

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