我想要检索并使用此倒计时中的秒数变量到我的html => http://git.wimbarelds.nl/TimeCircles/index.html
这是项目中的js文件=> http://git.wimbarelds.nl/TimeCircles/inc/TimeCircles.js
在我的html中,我通过这种方式调用变量=>
var map;
function initMap() {
map = new google.maps.Map(document.getElementById('map'), {
center: {lat: -34.397, lng: 150.644},
zoom: 8
});
}
但实际上并没有打印......
如果我将测试变量放入js文件的顶部,我可以输出它,但我不知道如何将它提取到主函数中
<script>
$(document).ready(function() {
$('.total_seconds').text(total_duration.toFixed(2));
});
</script>
<div id="total">Total :<br><span class="total_seconds"></span> €</div>
答案 0 :(得分:0)
我不知道你想要实现什么,但我觉得这个TimeCircles库不是你想要的,因为它似乎是provide visitors an attractive countdown or timer,我读作“不是日期时间您可以使用Javascript's Date
object进行日期/时间访问和操作:
$(function() {
var now = new Date();
var then = new Date('2018-01-01');
$('.test').text((then - now) / 1000);
});
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
Seconds until 2018: <span class="test"></span>
如果那不是您想要的,我建议您查看Moment.js。