1. Date format to time kill
function getTimestamp(time) { return Date.parse(new Date(time)); }2. Time to date format
function transformPHPTime(time) { var date = new Date(time * 1000); Y = date.getFullYear() + '-'; M = (date.getMonth()+1 < 10 ? '0'+(date.getMonth()+1) : date.getMonth()+1) + '-'; D = date.getDate() + ' '; h = date.getHours() + ':'; m = date.getMinutes() + ':'; s = date.getSeconds(); return Y+M+D+h+m+s;}The above is the full content of the simple examples of the mutual conversion of date and time brought to you by the editor. I hope everyone will support Wulin.com more~