0

根据 api http://amsul.ca/pickadate.js/api/。我正在使用以下代码来获取给定日期的 unix 时间戳。

首先我设置:

$('.startDate').pickadate({
        selectMonths: true, // Creates a dropdown to control month
        selectYears: 15 // Creates a dropdown of 15 years to control year
    });

然后我尝试了:

console.log($('.startDate').get('picker'))
console.log($('.endDate').get('select','pick'))

但是,这两个语句都没有打印任何内容。我期待这种格式的答案

1476772363,即自 1970 年 1 月 1 日以来的 1476772363 秒。(UTC)选定日期

. 然而对于

console.log($('.endDate').val())

它打印

2016 年 10 月 20 日

4

1 回答 1

0

$('.startDate').get('select') 应该返回日期。

如果需要,添加格式模式。

$('.startDate').get('select', 'yyyy/mm/dd')

通过这种方式,您可以使用输出创建一个时刻,以便更好地进行操作。

希望它有帮助,扬

于 2016-10-18T06:29:52.667 回答