标签: jquery twitter-bootstrap
我正在寻找找到Popover身高的方法。我只能找到宽度
我需要找出弹出高度,因为我将根据弹出高度调整DIV高度。
注意:Bootstrap 2.x
答案 0 :(得分:1)
只需使用css("height)"甚至.height():
css("height)"
.height()
$("#popoverId").height()
For example:
$(".popover:eq(4)").height()
(点击顶部的 Popover 按钮,然后在浏览器控制台中运行上面的代码)