gpt4 book ai didi

javascript - 没有参数的 jQuery outerHeight() 函数返回对象而不是参数值

转载 作者:行者123 更新时间:2023-11-28 16:37:18 24 4
gpt4 key购买 nike

该函数正在将日志打印为-

console.log("top:"+$(token_list).outerHeight());

我希望返回参数值,这样我就可以像这样添加 css 高度:

dropdown
.css({
position: "absolute",
top: $(token_list).offset().top + $(token_list).outerHeight(),
left: $(token_list).offset().left,
'z-index': 999
})

但是它没有将 top 的值作为样式,因为该方法返回的是对象类型值。任何建议如何解决这个问题?

最佳答案

您使用的是什么版本的 JQuery?

看起来像是 JQuery Ui 版本 1.8.1 的错误(有关错误信息,请参阅 here)。

包含 includeMargins 参数并指定 false 以获取元素的外部高度或更新 JQuery Ui。

dropdown
.css({
position: "absolute",
top: $(token_list).offset().top + $(token_list).outerHeight(false),
left: $(token_list).offset().left,
'z-index': 999
})

关于javascript - 没有参数的 jQuery outerHeight() 函数返回对象而不是参数值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34312848/

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