我有一个通过 jQuery UI 调整大小的“工具栏”div。
奇怪的是,我不能拖动 div,除非 div 太长以至于超出了可查看的页面,使滚动条出现。然后我可以将 div 拖动到任何我喜欢的地方。但是,如果我拖动 div 使其适合没有滚动条的页面,然后我放下,我无法再次调整它的大小(除非我将页面变小以使滚动条再次出现!)。
这是html:
<div class="Viewer">
<div align="center">
<div align="left" style="position:relative; width:100%; height:30px;">
<div id="toolbar_buttons" class="ToolBar">
<table>
<tr>
<td>
<button id="play">play</button>
</td>
<td>
<button id="stop">stop</button>
</td>
<td>
<div id="slider-vertical"></div>
</td>
<td style="width:30px;">
<!--<input type="text" id="amount" style="border:0; display:none; font-weight:bold;" />-->
<span id="amount"></span>
</td>
<td>
<button id="btnScreenSizer">fit to screen</button>
</td>
<td>
<div id="status">status stuff goes here</div>
</td>
</tr>
</table>
</div>
<div id="toolbar" class="ui-widget-header"></div>
</div>
</div>
</div>
这是CSS:
#toolbar
{
display: none;
width: 300px;
height: 45px;
z-index: -999999;
}
这是jQuery:
$("#toolbar").resizable({
handles: "se",
maxHeight: 45,
minHeight: 45,
minWidth: 400
});
有任何想法吗?工具栏位于 iFrame 中。