jQuery Time ago from a timestamp?

前端 未结 4 832
夕颜
夕颜 2021-02-06 08:31

Below is a really nice time ago plugin for jQuery, very similar to what they use here on SO. The problem for me is that it uses this to convert time.

4条回答
  •  逝去的感伤
    2021-02-06 09:00

    I like to use DateJS.com which is a date / time javascript library. You can do cool stuff like this (display 2 hours ago in a ):

    $('#myfield').text( (2).hours().ago().toString("HH:mm") );
    

提交回复
热议问题