gpt4 book ai didi

javascript - 元素 outerHeight + px

转载 作者:行者123 更新时间:2023-11-28 02:10:02 27 4
gpt4 key购买 nike

如何向 outerHeight() 函数添加额外的像素?

所以我们有一个变量,它获取 .pg-sect `s outerHeight:

var $section = $('.pg-sect').outerHeight();

我想要的是将高度增加 70 像素。代码看起来像什么?

var $section = $('.pg-sect').outerHeight() + 70px;

好吧,让我澄清一下:

我想添加一个条件:滚动区域是否等于 .pg-sect 的区域 - outerHeight 之前的 100 px,我们做一些事情。问题是如何获得这些元素 outerHeight 的 100px

最佳答案

var $section = $('.pg-sect').outerHeight();

//Here you're just assigning a value rather than modifying the element itself
var $section = $('.pg-sect').outerHeight() + 70;

修改元素:

var $section = $('.pg-sect').outerHeight() + 70;
$('.pg-sect').outerHeight($section);

关于javascript - 元素 outerHeight + px,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48814739/

27 4 0
文章推荐: javascript - 如何找到合适的 DOM 方法以在 div 中选择的 'px' 中获得位置
文章推荐: html - Codeigniter HTML 表格不是用 TCPDF 绘制的
文章推荐: jquery - 如何使用 jquery 设置
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com