考虑以下示例:http: //jsfiddle.net/emepyc/gVNRc/
<body>
<ul class="nav nav-tabs">
<li><a href="#plot" data-toggle="tab">Main</a></li>
</ul>
<div class="tab-content">
<div id="plot" class="tab-pane">
</div>
</div>
</body>
当“plot”div元素在bootstrap控件下时,bbox报错为:SVGRect {height: 0, width: 0, y: 0, x: 0}
但是将 div 元素移到外面......
<body>
<div id="plot">
</div>
</body>
... bbox 正确报告为:SVGRect {height: 146, width: 848, y: 180, x: 56}
有人知道这里发生了什么吗?
米;