我在这里一遍又一遍地看到同样的问题,但没有解决方案适合我。
我将jScrollPane()
方法应用于已<div>
和height
的{{1}}元素,内容由溢出width
插入剪切,但滚动条没有出现。
jScrollPane()
(在openLightBox();函数下面是Lightbox div的fadeIns)
调用Scroll Pane方法之前的HTML:
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();
}