JS倒计时有问题,有点急

发布于 2021-11-19 08:04:16 字数 1706 浏览 771 评论 3

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title> New Document </title>
<meta name="Generator" content="EditPlus">
<meta name="Author" content="DAYU">
<meta name="Keywords" content="">
<meta name="Description" content="">
</head>

<body>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title> New Document </title>
<meta name="Generator" content="EditPlus">
<meta name="Author" content="DAYU">
<meta name="Keywords" content="">
<meta name="Description" content="">
</head>
<?=date_default_timezone_set("Asia/Shanghai");?><!-- 这里会输出1先不管 -->
<?php
//3天后的时间
$d =strtotime('+3 days');
$threeday=date('Y-m-d H:i:s',$d);
?>
<script language="javascript">
function countdown(endtime, today)
{
    //today = new Date();
        //var testDate = new Date();
        //today = new Date();
    //target_time=new Date(endtime);
        testDate = new Date();
        today = testDate.format("yyyy-MM-dd hh

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

悲喜皆因你 2021-11-20 13:41:24

用firefox 或 IE 的F12调试一下

顾挽 2021-11-20 11:45:42

比较两个时间的差值

var sub1 = Math.abs(endDate - beginDate);
//			var day = Math.floor(sub1/(1000*60*60*24));
			var hour = Math.floor(sub1/(1000*60*60) % 24);
			var min1 = Math.floor(sub1/(1000*60) % 60);
			var sec = Math.floor(sub1/1000 % 60);
//			if (day >= 1) {
//				s = day + "天";
//			}
			if (hour >= 1) {
				s += hour + "小时";
			}
			if (min1 >= 1) {
				s += min1 + "分";
			}
			if (sec >= 0) {
				s += "秒";
			}

南汐寒笙箫 2021-11-20 05:34:00

别这么蛋疼写一堆了用
http://momentjs.com/

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文