<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE wml PUBLIC "-//WAPFORUM//DTD WML 1.1//EN" "http://www.wapforum.org/DTD/wml_1.1.xml">
<wml>
<head><meta forua="true" http-equiv="Cache-Control" content="max-age=0" /></head>
<card title="jQuery实现时间计时器 显示某天某时某分某秒" id="card1">
<p> 游客</p><p>
标题:jQuery实现时间计时器 显示某天某时某分某秒<br/>
正文:<br/>
1.用jquery实现时间计时器,从之前的某个时间段到现在距离多少天多少时多少分多少秒? <br/><br/>html代码: <br/>代码如下:<br/>&amp;lt;div id=&quot;times_wrap&quot; class=&quot;time_num&quot;&amp;gt; <br/>距离现在时间： <br/>&amp;lt;div class=&quot;time_w&quot;&amp;gt; <br/>&amp;lt;span id=&quot;time_d&quot; class=&quot;time&quot;&amp;gt; &amp;lt;/span &amp;gt;天 <br/>&amp;lt;span id=&quot;time_h&quot; class=&quot;time&quot;&amp;gt; &amp;lt;/span &amp;gt;时 <br/>&amp;lt;span id=&quot;time_m&quot; class=&quot;time&quot;&amp;gt; &amp;lt;/span &amp;gt;分 <br/>&amp;lt;span id=&quot;time_s&quot; class=&quot;time&quot;&amp;gt; &amp;lt;/span &amp;gt;秒 <br/>&amp;lt;/div&amp;gt; <br/>&amp;lt;/div&amp;gt; <br/><br/>&amp;lt;script type=&quot;text/javascript&quot;&amp;gt; <br/>$(function(){ <br/><br/>show_time(); <br/><br/>}); <br/><br/>function show_time(){ <br/>var time_start = new Date(&quot;2013/10/01 00:00:00&quot;).getTime();//设定开始时间 <br/>var time_end = new Date().getTime(); //设定结束时间(等于系统当前时间) <br/>//计算时间差 <br/>var time_distance = time_end - time_start; <br/>if(time_distance &amp;gt; 0){ <br/>// 天时分秒换算 <br/>var int_day = Math.floor(time_distance/86400000) <br/>time_distance -= int_day * 86400000; <br/><br/>var int_hour = Math.floor(time_distance/3600000) <br/>time_distance -= int_ho<br/><a href="http://camnpr.com/wap.asp?mode=WAP&amp;act=View&amp;id=1126&amp;Page=1">[&lt;&lt;]</a><a href="http://camnpr.com/wap.asp?mode=WAP&amp;act=View&amp;id=1126&amp;Page=1">[[1]]</a><a href="http://camnpr.com/wap.asp?mode=WAP&amp;act=View&amp;id=1126&amp;Page=2">[2]</a><a href="http://camnpr.com/wap.asp?mode=WAP&amp;act=View&amp;id=1126&amp;Page=2">[&gt;&gt;]</a><br/>
<br/>
<a href="wap.asp?act=Com&amp;id=1126">查看评论(0)</a><br/>
<a href="wap.asp?act=AddCom&amp;inpId=1126">发表评论</a><br/><br/>

<br/>

<br/>
<a href="http://camnpr.com/wap.asp">首页</a>
</p>
</card>
</wml>