JavaScript获取当前时间不工作的Firefox

时间:2013-10-11 11:40:33

标签: javascript html html5 firefox

大家好,我今天来这里分享并修复此代码(不修复,但要使其在Firefox上运行)。 从一些Java脚本如何在Firefox上不起作用,但它适用于Chrome,IE和Opera。

以下是JavaScript代码:

<script language="javascript" type="text/javascript">
/* Current Local Time + Updater */
<!-- Begin
var timerID = null;
var timerRunning = false;

function stopclock (){
    if(timerRunning)
        clearTimeout(timerID);
    timerRunning = false;
}

function showtime () {
    var now = new Date();
    var hours = now.getHours();
    var minutes = now.getMinutes();
    var seconds = now.getSeconds()
    var timeValue = "" + hours
    if (timeValue == "0") timeValue = 12;
    timeValue += ((minutes < 10) ? ":0" : ":") + minutes
    timeValue += ((seconds < 10) ? ":0" : ":") + seconds
    document.getElementById("clock").innerText = timeValue;
    timerID = setTimeout("showtime()",1000);
    timerRunning = true;
}

function startclock() {
    stopclock();
    showtime();
}

window.onload=startclock;
</script>

此脚本在此处调用ID是ID:

<span id="clock"></span>

(信息:这是一个24小时制的时钟,所以在中午“12:00”继续13:00之后:)

如果有人可以帮我解决这个问题,那么我将会很棒

1 个答案:

答案 0 :(得分:2)

Firefox上没有innerText属性(standard属性为textContent)。

由于您实际上不需要innerTexttextContent,因此快速解决方法是更改​​

document.getElementById("clock").innerText = timeValue;

document.getElementById("clock").innerHTML = timeValue;