D3图表-JS-添加时间

时间:2019-03-14 15:50:30

标签: javascript d3.js charts

希望对此有一些指导。

我正在玩这个-https://codepen.io/HD10805/pen/QoaVdL

在JS元素中,有一个部分相信我会生成并编译Time的数据。

function renderTime() {

var now = new Date();
var today = now.toDateString();
var time = now.toLocaleTimeString();
var hours = now.getHours();
var minutes = now.getMinutes();
var seconds = now.getSeconds();
var milliseconds = now.getMilliseconds();
var newSeconds = seconds+ (milliseconds/1000);

基本上,我希望能够增加或减少小时数,以便显示其他国家/地区在其他时区的时间。

谢谢。

1 个答案:

答案 0 :(得分:0)

您可以使用setHours

let date = new Date()

console.log(date)

let hours = date.getHours()

date.setHours(2 + hours)

console.log(date)