Server : Apache
System : Linux iZ2vcgyutqttsd1p850kl8Z 3.10.0-1160.92.1.el7.x86_64 #1 SMP Tue Jun 20 11:48:01 UTC 2023 x86_64
User : www ( 1000)
PHP Version : 5.6.40
Disable Function : passthru,exec,system,putenv,chroot,chgrp,chown,shell_exec,popen,proc_open,pcntl_exec,ini_alter,ini_restore,dl,openlog,syslog,readlink,symlink,popepassthru,pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,imap_open,apache_setenv
Directory :  /www/wwwroot/saimikebio.com/js/
Upload File :
Current Directory [ Writeable ] Root Directory [ Writeable ]


Current File : /www/wwwroot/saimikebio.com/js/time.js
$(function (){function _fresh()  
{   
 $(".fd30_time").each(function(){
					var dayh=$(this).attr("dayh");
				    var endtime=new Date($(this).attr("endtime"));  //用来判断是否显示天数的变量
					var starttime=new Date($(this).attr("starttime"));  //用来判断是否显示天数的变量
                    var nowtime = new Date();  
                    var leftsecond=parseInt((endtime.getTime()-nowtime.getTime())/1000); 
					var rightsecond=parseInt((starttime.getTime()-nowtime.getTime())/1000); 
                    __d=parseInt(leftsecond/3600/24);  
					__dy=__d<10?'0'+__d:__d;
                    __h=parseInt((leftsecond/3600)%24);  
                    __m=parseInt((leftsecond/60)%60);  
                    __s=parseInt(leftsecond%60);  
                    var c=new Date();
                    var q=((c.getMilliseconds())%10);
					  $(this).html("<i>剩余</i><span>"+__d+"<em>天</em></span><span>"+__h+"<em>时</em></span><span>"+__m+"<em>分</em></span><span>"+__s+"."+q+"<em>秒</em></span>")
					  if(dayh==0){ 
					     $(this).html("<span class='days'><i>剩余</i><em>"+__dy+"</em>天</span>")
						 if(__d==0){ $(this).html("<span class='days'><i>剩余</i><strong>"+__h+"</strong><em>时</em></span>");}
						 if(__h==0){ $(this).html("<span class='days'><i>剩余</i><strong>"+__m+"</strong><em>分</em></span>");}
					  }
/*					  if(dayh==1){ 
					    $(this).html("<i>剩余</i><span><em>"+__d+"</em>天</span><span><em>"+__h+"</em>时</span><span><em>"+__m+"</em>分</span><span><em>"+__s+"</em>秒</span>")
					  }*/
					  
					  if(dayh==1){  $(this).html("<span><i>"+__d+"</i><em>天</em></span><span><i>"+__h+"</i>:</span><span><i>"+__m+"</i>:</span><span class='span_e'><i>"+__s+"</i></span>") }
					  
					  if(dayh==2){  $(this).html("<span><i>"+__d+"</i><em>天</em></span><span><i>"+__h+"</i><em>时</em></span><span><i>"+__m+"</i><em>分</em></span><span class='span_e'><i>"+__s+"</i><em>秒</em></span>") }
					  //alert(leftsecond);
					  if(rightsecond>0){  
					  	  $(this).html("团购即将开始..");
						  $(this).parent().parent().addClass("qg_table_start");
                         // clearInterval(sh); 
					    } 
                      if(leftsecond<=0){  
					  	  $(this).html("已结束");
						  $(this).parent().parent().find(".groupbuy").html("团购已结束");
						  $(this).parent().parent().find(".groupbuy").attr("href","javascript:void(0);");
						  $(this).parent().parent().addClass("qg_table_end");
                         // clearInterval(sh); 
					    }
		
						
						})
 }  
_fresh()  
var sh;  
sh=setInterval(_fresh,100)})