Time conversion to HH:MM PM/AM format
Using a Json data where Time is coming up as String.
{"sta开发者_StackOverflow中文版rtTime": "08:00:00","sessionId": 231,"endTime": "13:00:00"},
Need to convert this in my Jsp as below format StartTime is 8:00 AM and End time is 1:00 PM. Is their a way to achieve this in Jquery or Javascript function.
If jsp, you can try <fmt:formatDate>
tag of JSTL. There are many examples around. If jQuery/javascript, you can use jquery-dateFormat plugin
Use dateJs.
精彩评论