gpt4 book ai didi

javascript - 获取样式属性值添加 'X'并设置新值

转载 作者:行者123 更新时间:2023-12-01 03:39:32 24 4
gpt4 key购买 nike

当用户单击“加载更多”按钮并且卡片包装器具有 ListView 类时。

我想获取梅森样式属性值并在其顶部添加 300px 并将该值设置为梅森 div。

这里的问题是我可以获得 mason arrt 值,但 newheight 返回“NaN”。

请帮忙!!

$('.load-more').on('click', function() {

if ($('.cards-wrapper').hasClass('list-view')) {

setTimeout(function() {
var currentHeight = $('.mason').attr('style');
console.log('current' + currentHeight);

var newHeight = parseInt(currentHeight);
console.log('new height' + newHeight);
$('.mason').css('height', newHeight + 300);

}, 3000);

}
});
<div class="mason clear-fix" style="height: 6380px;">

最佳答案

.mason 元素获取高度,而不是属性样式。

var currentHeight = $('.mason').height();

关于javascript - 获取样式属性值添加 'X'并设置新值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44001314/

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