1

我正在使用离子滑块 ( http://ionden.com/a/plugins/ion.rangeSlider/en.html ) 和 moment.js 来处理日期。问题是日期没有按照滑块上应有的方式格式化。

var beginMoment = moment("2015-04-20");
var endMoment = moment("2015-08-20");

console.log("Begin");
console.log(beginMoment);

$("#chord_range").ionRangeSlider({
    type: "double",

    min: +moment(beginMoment).format("X"),
    max: +moment(endMoment).format("X"),

    from: +moment(beginMoment).format("X"),
    to: +moment(endMoment).format("X"),

    prettify: function (num) {
            return moment(num, "X").format("dddd, MMM Do YYYY");
    }});

但是,日志确实给出了正确的格式。任何建议将不胜感激。

4

0 回答 0