将moment.js用作日历中的日期和时间选择器

时间:2017-07-27 12:05:52

标签: javascript html html5 momentjs

我喜欢使用javascript和html进行未来或过去的客户端日期选择。 是InstanceContext提供和选择格式,还是只提供当前日期和时间。 如果问题重复,请提及链接

或者还有其他任何javascript来制作时间和日期选择器

1 个答案:

答案 0 :(得分:0)

好的,我这么做是为了在给定的时间和日期获得超时功能

这是app.js

  app.post('/aa', function (req, res, next) {   
  var first = req.body.firstd
  var second = req.body.secondd
  var firstt = moment(first)
  var secondds = moment(second)
  console.log(firstt)
  console.log(secondds)
  var timeoutto = secondds.diff(first)
  console.log(secondds.diff(first))

  setTimeout(function () {
    res.send('Hello world')
  }, timeoutto)
})

这里是html

<form action="/aa" method="POST">
        <input type="datetime-local" name="firstd">
        <input type="datetime-local" name="secondd">
        <input type="submit" value="Send">
</form>