3

编辑:我通过取出页面底部的一个 jQuery 链接使滚动工作

但是,现在手风琴折叠不起作用并扩展了所有链接。

我拿出了这个:<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script>


我的 jQuery 插件有问题,它会慢慢滚动到锚链接。它以前工作过,直到我修复了手风琴崩溃。我到处寻找,我是 jQuery 的初学者,想知道我是否链接了正确的文件?

我知道我的 goToByScroll 插件的 HTML 代码很好,我认为它只是我的 jQuery 链接或 jQuery 代码。我参考了http://www.spydertrap.com/blog/2012/08/user-experience-jquery-smooth-page-anchor-transitions/的 jQuery 滚动效果。

代码如下。

在我的文件的开头,我有:

<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">

<!--Le Styles-->
<link href="css/bootstrap.css" rel="stylesheet" media="screen">
<link href="css/bootstrap-responsive.css" rel="stylesheet">

我想要任何与 jQuery 链接的帮助,因为我基本上是在自学。这是手风琴折叠代码:

<div class="accordion" id="accordion1">
        <div class="accordion-group">
            <div class="accordion-heading">
                <a class="accordion-toggle" data-parent="#accordion1" data-toggle="collapse" href="#panel1">

                    <h4>Piece Title</h4>

                </a><!--end link heading-->
            </div><!--end accordian heading-->

            <div class="accordion-body collapse in" id="panel1">
                <div class="accordion-inner">

                    <p>Here's some text.Here's some text.Here's some text.Here's some text.                     
                </div><!--end inner accordion-->
            </div><!--end accordion collapse-->
        </div><!--end accordion group-->
</div><!--end accordion complete-->

这是带有脚本的 HTML 页面的底部:

<script src="js/bootstrap.min.js"></script>

这个被取出了,goToByScroll jQuery 工作了,但折叠功能没有: <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script>

<script type="text/javascript" src="/static/js/bootstrap.js"></script>

<!--calls and pauses carousel from sliding-->
<script type="text/javascript">
    $(document).ready(function(){
        $('.carousel').carousel();
        $('.carousel').carousel('pause');
    });
</script>

<script type="text/javascript">
    $(document).ready(function(){
        $(".collapse").collapse()
    });
</script>

<!--eases transitions between anchors-->
<script type="text/javascript">
    function goToByScroll(id){
        $('html,body').animate({scrollTop: $(id).offset().top},'slow');
    }

    $(document).ready(function(){
        $('.nav a').click(function(){
        goToByScroll($(this).attr('href'));
        return false;
        });
    });
</script>

谢谢!如果有更多需要的文件,请告诉我。

4

1 回答 1

0
  1. 为了让手风琴工作,它需要jquery图书馆。这里
  2. 为什么你有两个引导脚本: <script src="js/bootstrap.min.js"></script><script type="text/javascript" src="/static/js/bootstrap.js"></script>?两者有什么区别?如果它们相同,则可以使用,bootstrap.min.js因为这只是bootstap.js.
  3. 你怎么能在没有图书馆的情况下使用.animate(), .attr(),.ready()等?jquery
于 2013-01-07T05:14:32.817 回答