我試圖從資料庫建立倒數計時器。我已將deltatimeserver傳送給js。輸出是正確的,但他們凍結(不倒計時,我必須按f5)。對我有什麼想法?
這是我的**。
jsfunction countdown(){
$(".show").each(function() {
var elm = $(this);
var diftime=this.timestamp;
var day=0,hours=0,minutes=0,seconds=0;
if(diftime>0){
day=math.floor(diftime/84600);
hours=(math.floor((diftime/3600))%24) + day*24 ;
minutes=math.floor(diftime/60)%60;
seconds=math.floor(diftime)%60;
else{
elm.removeclass("show"); //for remove class show
elm.html(hours+' h '+minutes+' m '+seconds+' s ');
function countdown_onload(){
$(".show").each(function() {
this.timestamp = parseint(this.firstchild.nodevalue,10);
setinterval(countdown,1000);
$(document).ready(function() {
countdown_onload();
php$show=mysql_query("select * from `room_lists` where `active` = 1");
while ($array = mysql_fetch_array($show))
$timestop = $array['timestop'];
$deltatimeserver = strtotime($timestop)-strtotime(date('y-m-d h:i:s'));
echo "
".$deltatimeserver." ";
python計時器 python 計時器
import sysclassshowtime qwidget def init self super init self.istimestart false 標記時間是否開始計時 self.setwindowtitle qlable 顯示計時時間 self.lable time val qlabe...
python計時器單位 python計時器類
import time as t class mytimer def init self self.unit 年 月 日 時 分 秒 self.prompt 未開始計時 self.lasted self.start 0 self.stop 0 def str self return self.pro...
伺服器計時器與 Windows 計時器
說明 此文大部分內容摘自msdn,本人只是做了一點整理。如果有什麼異議,一切以msdn為準。一 引言 在 visual studio net 中有兩種計時器控制項 基於伺服器的計時器和標準的基於 windows 的計時器。基於 windows 的計時器為在 windows 窗體應用程式中使用而進行了...