gpt4 book ai didi

jquery - 为什么 jQuery 的 height() 会自动将值向上舍入?

转载 作者:行者123 更新时间:2023-12-01 03:40:30 26 4
gpt4 key购买 nike

我想计算列表的计算高度。在 IE 上,这两者给出不同的结果。在 Chrome 上,该值似乎始终为整数,因此我没有遇到此问题。

// gives a string of "353.7px"
window.getComputedStyle(mylist, null).getPropertyValue("height")

// gives an int of 354
$(mylist).height();

jQuery 为何会舍弃小数,或者这是 IE 的问题?

编辑我实际上在撒谎。 Chrome 会发生这种情况。请参阅http://jsfiddle.net/jTPk9/

最佳答案

这是 jQuery 中的一个已知错误,它不应舍入高度和宽度值。

http://bugs.jquery.com/ticket/9628

已更新 @CookieMonster 的评论

当前的解决方法是使用 .getBoundingClientRect().height,它是跨浏览器的并且不会舍入值。

document.getElementById("fruits").getBoundingClientRect().height

关于jquery - 为什么 jQuery 的 height() 会自动将值向上舍入?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21777668/

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