有没有办法使用strtotime
来获取下一个,比如说,将来上午10点?如果是早上9:59,那么下一个上午10点就是今天。如果是上午10点,下一个上午10点是明天。 strtotime('next 10am')
无效。
解决方案不需要使用strototime
。建议?
答案 0 :(得分:5)
一个简单的if会做的伎俩
var funcs = [];
funcs[0] = function() {
$('#slideshow1 > div:gt(0)').hide();
setInterval(function () {
$('#slideshow1 > div:first')
.fadeOut(0)
.next()
.fadeIn(0)
.end()
.appendTo('#slideshow1');
}, 0000);
}
funcs[1] = function() {
**All the same except number slideshow1 changes to 2,3,4,5, and 6**
}
funcs[2] = function() {
}
funcs[3] = function() {
}
funcs[4] = function() {
}
funcs[5] = function() {
}
单词:如果当前时间在今天上午10点之前而不是今天上午10点,否则时间明天上午10点