日期&时间脚本-ie vs ff

date & time script - ie vs ff

本文关键字:-ie vs ff 脚本 时间 amp 日期      更新时间:2023-10-21

我下面的脚本在ie中工作,但在firefox中我得到了:

Mon, July 16th 2012 //this is ok
NaN:NaN:NaN (UTC +2) //but the time???

var weekdaystxt = ["Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat"];
function showLocalTime(container, servermode, offsetMinutes, displayversion) {
    if (!document.getElementById || !document.getElementById(container)) return
    this.container = document.getElementById(container)
    this.displayversion = displayversion
    var servertimestring = (servermode == "server-php") ? '<? print date("D, F jS Y H:i:s", time())?>' : (servermode == "server-ssi") ? '<!--#config timefmt="%B %d, %Y %H:%M:%S"--><!--#echo var="DATE_LOCAL" -->' : '<%= Now() %>'
    this.localtime = this.serverdate = new Date(servertimestring)
    this.localtime.setTime(this.serverdate.getTime() + offsetMinutes * 60 * 1000) //add user offset to server time 
    this.updateTime()
    this.updateContainer()
}
showLocalTime.prototype.updateTime = function() {
    var thisobj = this
    this.localtime.setSeconds(this.localtime.getSeconds() + 1)
    setTimeout(function() {
        thisobj.updateTime()
    }, 1000) //update time every second 
}
showLocalTime.prototype.updateContainer = function() {
    var thisobj = this
    if (this.displayversion == "long") this.container.innerHTML = '<? print date("D, F jS Y")?>'
    else {
        var hour = this.localtime.getHours()
        var minutes = this.localtime.getMinutes()
        var seconds = this.localtime.getSeconds()
        var ampm = (hour >= 12) ? "PM" : "AM"
        var dayofweek = weekdaystxt[this.localtime.getDay()]
        this.container.innerHTML = formatField(hour, 1) + ":" + formatField(minutes) + ":" + formatField(seconds) + " (UTC +2)"
    }
    setTimeout(function() {
        thisobj.updateContainer()
    }, 1000) //update container every second 
}
function formatField(num, isHour) {
    if (typeof isHour != "undefined") { //if this is the hour field 
        var hour = (num > 24) ? num - 24 : num
        return (hour == 0) ? 24 : hour
    }
    return (num <= 9) ? "0" + num : num //if this is minute or sec field 
}

首先,这里是您发布的代码的jsFiddle,这样我们就可以看到发生了什么-

http://jsfiddle.net/HjDds/

请注意,这是一个工作版本。问题在于IE和Chrome解析日期的方式不同。无论<%现在()%>又回来了,Chrome不喜欢它,并且在创建新的Date()对象时无法进行解析。

您需要确保您的服务器正在发送一个日期字符串,该字符串的格式可以跨浏览器使用。

至于我的修复(尽管这不是真正的修复,因为你似乎想要服务器时间)是替换<%=现在()%>在带有新Date()的servertimestring字符串中。我还加了分号,因为我周围还有一堆临时演员。

无效格式数据:2012年7月16日星期一17:02:32

Php使用$_SERVER['REQUEST_TIME']并乘以1000。

这将:

var servertimestring = (servermode == "server-php") ? '<?php echo $_SERVER['REQUEST_TIME']*1000;?>' : (servermode == "server-ssi") ? '<!--#config timefmt="%B %d, %Y %H:%M:%S"--><!--#echo var="DATE_LOCAL" -->' : '<%= Now() %>';

:)