我有无限倒数计时器和一些东西的价格。我想根据计时器每天定价。我如何每天自动更改价格并将其显示给用户?
这是我的代码:
var d = new Date();
/*Get current date*/
var month = d.getMonth()+1;
var day = d.getDate();
/*Get date for timer(current + 1 day)*/
var output = d.getFullYear() + '/' +
(month<10 ? '0' : '') + month + '/' +
(day<10 ? '0' : '') + (day+1);
/*My price*/
var price = 1000;
var priceup = day+1;
$('#price').html(price);
if(priceup <= day) {price += 500; $('#price').html(price);}
$('#clock').countdown(output, function(event) {
$(this).html(event.strftime('%H:%M:%S'));
});
我正在使用“最后的倒计时”计时器http://hilios.github.io/jQuery.countdown/