【发布时间】:2013-01-21 09:17:05
【问题描述】:
我有一个奇怪的问题..我有一个用秒计数器显示时间的功能,但是当秒数达到 59 时,我发送了特定时间(小时和分钟)作为参数,没有增加分钟,我不确定是否同样的问题小时数为 59 分钟
function updateClock(current_hours,current_minutes) {
var currentTime = new Date ( );
var currentHours = current_hours;
var currentMinutes = current_minutes;
var currentSeconds = currentTime.getSeconds ( );
// Pad the minutes and seconds with leading zeros, if required
currentMinutes = ( currentMinutes < 10 ? "0" : "" ) + currentMinutes;
currentSeconds = ( currentSeconds < 10 ? "0" : "" ) + currentSeconds;
// Choose either "AM" or "PM" as appropriate
var timeOfDay = ( currentHours < 12 ) ? "AM" : "PM";
// Convert the hours component to 12-hour format if needed
currentHours = ( currentHours > 12 ) ? currentHours - 12 : currentHours;
// Convert an hours component of "0" to "12"
currentHours = ( currentHours == 0 ) ? 12 : currentHours;
// Compose the string for display
var currentTimeString = currentHours + ":" + currentMinutes + ":" + currentSeconds + " " + timeOfDay;
// Big font time
$('.big_time').html("<span></span>" + currentTimeString);
// Time in red triangle in the track bar
$('.time').html(currentTimeString);
}
我在准备好的文档中的另一个文件中调用此函数.. 我将从 API 检索到的数据发送到这里(小时和分钟)
current_hours = data.current_hours;
current_minutes = data.current_minutes;
setInterval(function(){updateClock(current_hours,current_minutes)},1000);
【问题讨论】:
-
能否请您在调用
updateClock的位置发布代码? -
如果你一直经过相同的小时和分钟,显然它不会改变:)
-
请检查我对问题所做的编辑以获得更多说明可能是我遗漏了一些东西
-
@YasserMoussa 您只检索一次值,并且您从未在代码中更新它们,所以我真的不知道您为什么希望它们改变。例如,如果您不断输入
10和27,那么无论秒数是多少,都会始终显示时间。
标签: php javascript jquery