0

我正在尝试使用 scrollTo 插件,但没有运气,我收到了这个错误

对象 [对象对象] 没有方法 'scrollTo'

脚本 scrollTo 包含在页面中...

    <script src="//ajax.googleapis.com/ajax/libs/jquery/1.9.0/jquery.min.js"></script>
    <script src="~/Scripts/jquery.scrollTo-1.4.3.1.js"></script>
    @Styles.Render("~/Content/css")
    @Scripts.Render("~/bundles/modernizr")

我这样称呼它

  $("#nav-next").click(function (e) {
        e.preventDefault();
        $("#slider").scrollTo(1300, 0);
    });

这是我试图在其上应用滚动的 Div:

  <div id="slider">
<div class="static-panel" id="static-panel">

  .... Images here 
</div>

4

2 回答 2

0

Try updating this:

<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.9.0/jquery.min.js">
</script>//--^^^^^^---this

and try with this:

<script src="http://demos.flesler.com/jquery/scrollTo/js/jquery.scrollTo-min.js">
</script>

may be there are issues with the path of scrollTo plugin.

于 2013-02-06T18:31:02.603 回答
0

这是同时加载 2 个版本的 Jquery 的问题......

Asp.Net mvc 默认模板添加 2 行

    @Scripts.Render("~/bundles/jquery")
    @RenderSection("scripts", required: false)

这会加载 jquery 1.7.1

于 2013-02-06T18:47:21.777 回答