-1

.html 文件:

    // <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"    
    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <title>Coming Soon</title>
    <link rel="shortcut icon" href="favicon.ico" type="image/x-icon" />
    <link href="tools/style.css" rel="stylesheet" type="text/css" />
    <link href="tools/jquery.countdown.css" rel="stylesheet" type="text/css" />
    <script type="text/javascript" src="tools/jquery.min.js"></script>
    <script type="text/javascript" src="tools/jquery.countdown.js"></script>
    <!-- <script type="text/javascript" src="tools/bg.js"></script> -->
    <script type="text/javascript">
$(function () {
var austDay = new Date();
austDay = new Date(2013, 10, 18, 12, 00);
$('#defaultCountdown').countdown({until: austDay});
$('#year').text(austDay.getFullYear());
    });

    $(function(){
    $('.fadein img:gt(0)').hide();
    setInterval(function(){
      $('.fadein :first-child').fadeOut(3000)
     .next('img').fadeIn(3000)
     .end().appendTo('.fadein');}, 
      3000); // change this to change the transition timing
  });
    </script>
    </head>
    <body>
    <div id="shim"></div>
    <div class="fadein">
    <img src="images/photo1.jpg">
    <img src="images/photo2.jpg">
<img src="images/photo3.jpg">
<img src="images/photo4.jpg">
<img src="images/photo5.jpg">
    </div>
    <div id="content">
    <div class="logo"><h1>Sva Spa and Salon</span></h1></div>   
<div class="right_side">
    <div class="right_content">
        <h2>Watch For Our Brand New Website</h2>
        <div id="defaultCountdown"></div>
        <form class="email" action="">
            <input class="get_notified" type="text"     
    onfocus="if(this.value=='Provide EMAIL for Reminder') this.value='';"        
    onblur="if(this.value=='' || this.value==' ') this.value='Provide EMAIL for   
    Reminder';"     
    value="Provide EMAIL for Reminder"/>
            <input type="button" class="go" />
        </form>
    </div>
</div>
    </div>

    </body>
    </html>

我得到图像旋转以及计数器的文本出现,但它只会在我刷新页面时减少。我还想为提交按钮添加一个 php 代码,以将电子邮件地址发送到另一个电子邮件地址,我该怎么做?请帮助我卡住了....

4

1 回答 1

0

三件事:

  1. id 什么都没有year,这是故意的吗?
  2. Countdown应该可以正常工作,但调试其余代码是您的工作
  3. 将您的代码放入.ready()函数中

代码:

 $(document).ready(function() {
   //your code
 });
于 2013-10-18T18:44:36.737 回答