Last active
March 31, 2016 00:57
-
-
Save nick-ChenZe/1fe225281895104735ad0450ec45b469 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function getDateDiff(dateTimeStamp){ | |
var minute = 1000 * 60; | |
var hour = minute * 60; | |
var day = hour * 24; | |
var halfamonth = day * 15; | |
var month = day * 30; | |
var now = new Date().getTime(); | |
var diffValue = now - dateTimeStamp; | |
var monthC =diffValue/month; | |
var weekC =diffValue/(7*day); | |
var dayC =diffValue/day; | |
var hourC =diffValue/hour; | |
var minC =diffValue/minute; | |
if(monthC>=1){ | |
result="" + parseInt(monthC) + "月前"; | |
} | |
else if(weekC>=1){ | |
result="" + parseInt(weekC) + "周前"; | |
} | |
else if(dayC>=1){ | |
result=""+ parseInt(dayC) +"天前"; | |
} | |
else if(hourC>=1){ | |
result=""+ parseInt(hourC) +"小时前"; | |
} | |
else if(minC>=1){ | |
result=""+ parseInt(minC) +"分钟前"; | |
}else | |
result="刚刚"; | |
return result; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment