jScrollPane缺少滚动条

时间:2013-08-06 15:20:21

标签: javascript jquery css jscrollpane

我在这里一遍又一遍地看到同样的问题,但没有解决方案适合我。 我将jScrollPane()方法应用于已<div>height的{​​{1}}元素,内容由溢出width插入剪切,但滚动条没有出现。

我的JavaScript代码:

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();

}

0 个答案:

没有答案