如何快速加载jquery nicescroll

时间:2013-02-08 03:14:27

标签: javascript jquery

我在使用ajax tabbing jquery的may网页中使用jquery nicescroll(http://areaaperta.com/nicescroll/)。

我有一个main.php页面,它调用了要加载的news.html。

main.php

<nav>
<ul>
...
<li><a href="news.html">News</a></li>
...
</nav>
<section id="cont1">
...
</section>
<section id="cont2" style="display:none">
</section>

Ajax的load.js

$(document).ready(function() {
$("ul li a").click(function() {
;
    $("section#cont2").fadeIn(200).siblings().hide();
        $("ul li a").removeClass('current');
        $(this).addClass('current');

        $.ajax({ url: this.href, success: function(html) {
            $("section#cont2").empty().append(html);

            }
        });
    return false;
    });

news.html css

#content-scroll{
    height:500px;
    overflow-y: scroll;
}

这是我的news.html

<script type="text/javascript" src="assets/js/jquery.nicescroll.js"></script>

<script>
  $(document).ready(function() {

    $("#content-scroll").niceScroll({cursorcolor:"#000",background:"#ccc",autohidemode:false});
  });

</script>

<div id="content-scroll">
 .... long text ....
</div>

我现在的问题是,在直播中,当我调用news.html时,默认滚动将首先显示在jquery nicescroll上。

演示没有显示默认滚动,我认为这是因为ajax tabbing jquery。

是否有任何方法可以显示默认滚动,而是快速加载jquery nicescroll?

1 个答案:

答案 0 :(得分:0)

如果在jQuery调用后加载默认滚动,它会起作用吗?