我需要你的帮助。
我正在尝试为我的网站设置一个jquery倒计时,但我不知道为什么,它不起作用!我看不到任何东西:我插入了html div,并为jquery代码,css等设置了链接。 this 是我的编辑页面。
这是完整的代码
<!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>
那有什么不对?
答案 0 :(得分:0)
它工作正常,它必须是你的设置中某处导致问题的东西
作为一般提示,您的脚本文件应尽可能靠近文档的底部,通常就在关闭正文标记之前,包括脚本文件和内联脚本。