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.
这个问题有点简单,但我似乎无法弄清楚这件事。
如何使用 jquery 计算 ol 中最后一个列表项高度的一半?我需要用这个精确的像素数量来缩短一条线,以使这个东西工作:
它也可以在纯javascript中完成:
var height = document.querySelector('ol li:last-child').offsetHeight / 2;
尝试
var height_li = $('ol li:last').height()/2;
参考
http://api.jquery.com/height/
http://api.jquery.com/last-selector/