更改位置上的倒数计时器(或点击按钮)

时间:2015-10-08 11:13:55

标签: javascript jquery countdown

我正在使用此https://github.com/sonnyt/downCount进行倒计时,这是脚本

    <script type="text/javascript">
$(document).ready(function() { 
	$('.countdown').downCount({
		date: '12/25/2015 00:00:00',
 
	});
});
</script> 

我今晚正在推出该网站,我需要倒计时才能改变美国访客。我有什么办法可以从英国改变设置到美国的位置吗?

有一个偏移:-5设置,但我不知道如何更改位置。

由于

1 个答案:

答案 0 :(得分:0)

&#13;
&#13;
        Dim ds As New DataSet1
        Dim adpter As New DataSet1TableAdapters.StudentsTableAdapter
        adpter.Fill(ds.Students)
        Dim report As New CrystalReport2
        report.SetDataSource(ds)
        CrystalReportViewer1.ReportSource = report
&#13;
$(document).ready(function() { 
  
  var strDateTime = "12/25/2015 00:00:00  GMT -7";
  var myDate = new Date(strDateTime);
  var LocalDate = myDate.toUTCString();
  alert(LocalDate);
	$('.countdown').downCount({
		date: LocalDate,
 
	});
});
&#13;
&#13;
&#13;

您好,您可以根据以下代码转换您的时间

如果用户运行页面FROM us,那么它将显示美国的开始时间,如果他从英国运行,那么用户可以看到英国当地时间。