jScrollPane不使用ajax

时间:2013-02-18 13:48:42

标签: ajax jquery jscrollpane jquery-jscrollpane

我试图加载jscrollpane当ajax加载时,该函数似乎加载但它不能很好地运行,它表现得像jscrollpane div中没有​​内容,但它有!我不知道我做错了什么

$('#feedbackNoticia #noticia2').click(function(){
                $.post('teste2.php', function(data){
                    $('#noticiasBox .descricao').fadeOut(200);
                    $('#noticiasBox .noticiaAberta').delay(200).fadeIn(200).html(data);
                    $('.ajax .pNoticias').jScrollPane();
                });
            });

当ajax文件加载'teste2.php'时,它显示了jscrollpane的html extructure,你可以在检查器中看到它但它不起作用,我不明白为什么。

你可以看到这里的例子,点击菜单Notícias然后你会向下滚动并点击最后一项 http://www.estudiocaju.com.br/homolog/dicavalcanti/

1 个答案:

答案 0 :(得分:0)

问题是我在fadeIn之后有一个.delay(100),不知何故它影响了jScrollPane的加载。