设计之家 > 教程 > 網頁教程 > 其他教程 >

倒計時牌 例如:距離某某日子還有X天

作者:未知 來源:本站原創 時間:2006-03-03

<script language="javascript">

<!-- // (c) Henryk Gajewski

var urodz= new Date("1/1/2008");

var  s="今天離2008年1月1日";

var now = new Date();

var ile = urodz.getTime() - now.getTime();

var dni = Math.floor(ile / (1000 * 60 * 60 * 24));

if (dni > 1)

   document.write(""+s+"還有"+dni +"天")

else if (dni == 1)

     document.write("只有2天啦!")

else if (dni == 0)

     document.write("只有1天啦!")

else

    document.write("好象已經過了哦!");

// -->

</script>

标签:倒計時牌

相關文章:

推薦設計

最新文章