gpt4 book ai didi

javascript - noUiSlider 工具提示中的日期格式

转载 作者:行者123 更新时间:2023-11-30 07:00:17 24 4
gpt4 key购买 nike

我正在尝试在我的项目中使用 noUiSlider,但我无法在工具提示中应用日期格式。我刚在外部 div 得到它。

看看这个JSFIDDLE .

noUiSlider.create(dateSlider, {
behaviour: 'tap',
connect: true,
tooltips: [ true, true ],
range: {
min: timestamp('2016-06-01') + 24 * 60 * 60 * 1000,
max: timestamp(date)
},
step: 1 * 24 * 60 * 60 * 1000,
start: [timestamp(previousMonth), timestamp(date)]
});

最佳答案

您可以使用格式选项:

// Move formatting code into a function
function toFormat ( v ) {
return formatDate(new Date(v));
}

// Add a formatter to the slider
format: { to: toFormat, from: Number }

// You can then directly use the value in the update function
dateValues[handle].innerHTML = values[handle];

已更新 fiddle .

关于javascript - noUiSlider 工具提示中的日期格式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39904195/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com