我在这里一遍又一遍地看到同样的问题,但没有解决方案对我有用。我在一个元素上应用了该jScrollPane()
方法和,内容被溢出插入剪切,但滚动条没有出现。<div>
height
width
jScrollPane()
我的 JavaScript 代码:
function openSubs(cont){
var width = 500;
var height = 500;
var mtop = ((height+65)/2)*(-1);
$('#lightbox .content').width(width).height(height).css('margin-top', mtop).load('content/'+cont+'.php', function(){
$('#sub-content').width(width).height(height);
$('#sub-content').jScrollPane();
});
openLightBox();
}
(在 openLightBox(); 函数是下面灯箱 div 的淡入淡出)
并且调用 Scroll Pane 方法之前的 HTML:
<div id="lightbox">
<div class="fade"></div>
<div class="content">
A HUGE TEXT GOES HERE
</div>
<div class="fechar" onClick="resetLightBox();"></div>
</div>