我已经使用添加到我元素的数据属性中的车把进行倒计时,但我想要的是添加当前年份。我使用的框架倒计时是接受“2017/06/14”这种数据倒计时格式的最终倒计时,我的 html 是这样的:
<div class="cd" id="cd" data-countdown="{{month}}/{{day}} {{time}}"></div>
我想要实现的是将第一个索引中的年份添加为
data-countdown="2017/{{month}}/{{day}} {{time}}"
到目前为止,这是我的 js 脚本:
var currentDate = new Date().getFullYear();
$('.cd').each(function(){
//get each data-attribute
var a = $(this).data("countdown");
var b = a.split(" ");
//add the current year to it
b.unshift(currentDate);
c = b[0]+'\/'+b[1]+'\/'+b[2];
$(this).data("countdown", c); });