标题和正文中的jquery源标记都不匹配

时间:2014-06-05 10:03:27

标签: jquery html css

所以我需要jquery的两个部分,一个用于我的下拉菜单,一个用于我的'返回顶部"链接。

编辑:我会像现在一样发布整个页面(我会留下一些html)

所以现在dorpdown菜单可以工作,但是返回顶部不会

<!DOCTYPE HTML>
<!--
    Strongly Typed 1.1 by HTML5 UP
    html5up.net | @n33co
    Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
-->
<html>
    <head>
        <title>Kinderen en jongeren</title>
        <meta http-equiv="content-type" content="text/html; charset=utf-8" />
        <meta name="description" content="" />
        <meta name="keywords" content="" />
        <meta name="viewport" content="width=1040" />
        <link href='http://fonts.googleapis.com/css?family=Amaranth:400,400italic,700,700italic' rel='stylesheet' type='text/css'>
        <!--[if lte IE 9]><script src="js/html5shiv.js"></script><![endif]-->
        <link href="http://netdna.bootstrapcdn.com/font-awesome/4.1.0/css/font-awesome.min.css" rel="stylesheet" type="text/css">
        <!--[if IE 7]>
  <link rel="stylesheet" href="//css/font/font-awesome-ie7.css">
<![endif]-->
        <!--[if IE 7]>
  <link rel="stylesheet" href="//css/font/font-awesome-ie7.min.css">
<![endif]-->

        <script src="http://code.jquery.com/jquery.min.js"></script>
        <script src="js/jquery.dropotron.min.js"></script>
        <script src="js/config.js"></script>
        <script src="js/skel.min.js"></script>
        <script src="js/skel-panels.min.js"></script>
<script>
    $(document).ready(function() {
         // Show or hide the sticky footer button
        $(window).scroll(function() {
            if ($(this).scrollTop() > 200) {
                $('.go-top').fadeIn(200);
            } 
            else {
                $('.go-top').fadeOut(200);
            }
        });

        // Animate the scroll to top
        $('.go-top').click(function(event) {
            event.preventDefault();

            $('html, body').animate({scrollTop: 0}, 300);
        });
    });
</script>


        <noscript>
            <link rel="stylesheet" href="css/skel-noscript.css" />
            <link rel="stylesheet" href="css/style.css" />
            <link rel="stylesheet" href="css/style-desktop.css" />
        </noscript>
    </head>
    <body class="no-sidebar">
    <a id="top"></a>
<p> here is the html </p>





<div><a href="#" class="go-top">Go Top</a></div>




    </body>
</html>

0 个答案:

没有答案