当前位置: 代码迷 >> Web前端 >> jquery flot x轴时间差8小时有关问题
  详细解决方案

jquery flot x轴时间差8小时有关问题

热度:487   发布时间:2012-07-19 16:02:20.0
jquery flot x轴时间差8小时问题

使用flot时x轴为时间数据从后台传时间过来,但现实后发现显示的是UTC时间,跟本地时间差8小时,查了下资料用tickFormatter解决了。

var options = {
        lines: { show: true },
        points: { show: true },
        grid: { hoverable: true},
        xaxis: { 
        	mode: "time",
        	timeformat: "%H:%M:%S",
        	tickFormatter: function (val, axis) {
	            var d = new Date(val);
	            return d.toLocaleTimeString();//转为当地时间格式
	        }
        }
    };
?
  相关解决方案