var LeaveTime = AfterTime - (new Date())--- 倒计时的时间为你期待的时间-现在的时间
var LeaveDays=Math.floor(LeaveTime/(1000*60*60*24))---1天为1000毫秒*60秒*60分钟*24小时 後面的时分秒一样的解释
q="00"+ c.getMilliseconds()--加00或者0是因为系统默认01显示成1 所以如果要显示01的话 需要在前面加0 需要显示成001的话 需要加00
$("#hour").html(LeaveHours)--给时分秒赋值
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"><html>
<head>
<title>js倒计时代码 - k686绿色软件 - http://www.k686.com</title>
<meta name="Generator" content="EditPlus">
<meta name="Author" content="k686绿色软件 http://www.k686.com">
<meta name="Keywords" content="绿色软件">
<meta name="Description" content="绿色软件"></head><body>
<script>
function countDown( maxtime,fn )
{
var timer = setInterval(function()
{
if(maxtime>=0){
d=parseInt(maxtime/3600/24)
h=parseInt((maxtime/3600)%24)
minutes=parseInt((maxtime/60)%60)
seconds=parseInt(maxtime%60)
//minutes = Math.floor(maxtime/60)
//seconds = Math.floor(maxtime%60)
msg = "距离结束还有"+d+"天"+h+"小时"+minutes+"分"+seconds+"秒"
fn( msg )
if(maxtime == 5*60) alert('注意,还有5分钟!')
--maxtime
}
else{
clearInterval( timer )
fn("时间到,结束!")
}
}, 1000)
}
</script><div id="timer1" style="color:red"></div>
<script>
countDown( 6000,function( msg ) //6000服务器时间差 单位为妙
{
document.getElementById('timer1').innerHTML = msg
})
</script><div id="timer2" style="color:red"></div>
<script>
countDown( 6000,function( msg )
{
document.getElementById('timer2').innerHTML = msg
})
</script><div id="timer3" style="color:red"></div><script>
countDown( 600000,function( msg )
{
document.getElementById('timer2').innerHTML = msg
})
countDown( 30,function( msg )
{
document.getElementById('timer3').innerHTML = msg
})
</script>
</body>
</html>
<script type="text/javascript">
function daoshu(){
var djs = document.getElementById("daojishi")
if(djs.innerHTML == 0){
window.location.href='http://blog.163.com/qianw_ok/'
return false
djs.innerHTML = djs.innerHTML - 1
JavaScript一种直译式脚本语言,是一种动态类型、弱类型、基于原型的语言,内置支持类型。它的解释器被称为JavaScript引擎,为浏览器的一部分,广泛用于客户端的脚本语言,最早是在HTML(标准通用标记语言下的一个应用)网页上使用,用来给HTML网页增加动态功能。
在1995年时,由Netscape公司的Brendan Eich,在网景导航者浏览器上首次设计实现而成。因为Netscape与Sun合作,Netscape管理层希望它外观看起来像Java,因此取名为JavaScript。但实际上它的语法风格与Self及Scheme较为接近。
为了取得技术优势,微软推出了JScript,CEnvi推出ScriptEase,与JavaScript同样可在浏览器上运行。为了统一规格,因为JavaScript兼容于ECMA标准,因此也称为ECMAScript。