0

我需要你的帮助。

我正在尝试为我的网站设置 jquery 倒计时,但我不知道为什么,它不起作用!我什么都看不到:我已经插入了 html div,并设置了 jquery 代码、css 等的链接。 是我的编辑页面。

这是完整的代码

<!doctype html>
<html>
  <head>
    <title>Your Awesome Webpage created on Fri, 27 Sep 2013 09:24:37 GMT</title>
     <link href="http://corso-chitarrastudio.com/county.css" rel="stylesheet" type="text/css" />
    <link href="http://corso-chitarrastudio.com/county.css" rel="stylesheet" type="text/css" />
    <script src="http://corso-chitarrastudio.com/jquery-1.8.3.min.js" type="text/javascript"></script>
    <script src="http://corso-chitarrastudio.com/county.js" type="text/javascript"></script>
    <script type="text/javascript">
        $(document).ready(function () {
            $('#my-count-down').county({ endDateTime: new Date('2013/10/12 21:28:00'), reflection: false, animation: 'scroll', theme: 'black' });
        });
    </script>
    <style>
      body {
        background: url(http://farm4.staticflickr.com/3795/9963351894_c763ec6368_o.jpg);
        background-repeat:no-repeat !important;
    background-position:center center !important;
    background-attachment:fixed !important;
    -o-background-size: 100% 100%, auto !important;
    -moz-background-size: 100% 100%, auto !important;
    -webkit-background-size: 100% 100%, auto !important;
    background-size: 100% 100%, auto !important;
      }

      h1 {  font-family: Oswald, Arial, Tahoma, Sans serif;
           font-size:42px;
           color: #c3c1c1; 
           width: 340px;
           text-transform:none;
           text-shadow: 0px 2px 3px #555;
           margin: -40px auto 35px auto;
           text-align: center;
           letter-spacing: -2px;
        line-height: 0.87;}

      #testo {

        width: 876px;
        margin: 20px auto 10px auto;}

      #contatore2 {
        width: 350px !important;
        margin: 20px auto auto auto;
        overflow: visible;
        padding-left: 20px;}

      #titolo2 {

        width: 532px;
        margin-left: auto;
        margin-right: auto;
        text-align: center ;
      }
    </style>
       </head>
  <body>
    <div id='testo'>
      <img src='http://farm4.staticflickr.com/3696/9966911376_585f718fc0_o.png'></div>

     <div id="my-count-down">
    </div>
       <div id='titolo2'><img id='titolo2' src='http://farm6.staticflickr.com/5516/9966872034_cc1eecbca5_o.png'></div> 
  </body>
</html>

那么有什么问题呢?

4

1 回答 1

0

它工作正常,它一定是您的设置中的其他地方导致问题

作为一般提示,您的脚本文件应尽可能靠近文档底部,通常就在结束正文标记之前,包括脚本文件和内联脚本。

于 2013-09-29T15:02:56.687 回答