jscrollpane不可见

时间:2011-01-11 17:00:06

标签: jquery jquery-plugins jscrollpane jquery-jscrollpane

我的页面上有很多jquery疯狂,我想知道这是不是jscrollpane没有显示的原因。

请参阅http://jasondaydesign.com,然后点击左侧的雕塑菜单项,然后点击屏幕上剩余的div。

没有jscrollpane,文本是可滚动的。

但是,启用jscrollpane后,什么也没有显示。

想法?

1 个答案:

答案 0 :(得分:2)

您可以尝试在显示包含它的框后重新初始化jScrollPane。所以改变这一行:

$(this).find('.expandable').show('normal')

要:

$(this).find('.expandable').show(
    'normal',
    function()
    {
        $('.scroll-pane').jScrollPane();
    }
);

上一个回答

快速查看Firebug的网络检查器,它看起来像:

http://jasondaydesign.com/css/jquery.scrollpane.css

目前是404.这可能导致问题?