Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
是否有一个函数可以返回 div 的像素高度?我想根据 div 的大小将图像添加到所述 div 的一侧(这将取决于用户的内容,并会改变 div 的大小)
谢谢!
document.getElementById('divId').offsetHeight应该给你高度。
document.getElementById('divId').offsetHeight
如果使用 jQuery:
<div id="something">...</div>
jQuery:
$("#something").height();