前端有时候可能要从日期控件中拿到日期,然后参与计算,下边记录一个把日期字符串转换成时间戳的小函数。 dateStr格式为“ 2014-05-08 00:22:11 ” function get_unix_time(dateStr) { var newstr = dateStr.replace(/-/g,'/'); var date =new Date(newstr); var time_str = date.getTime().toString(); return time_str.substr(0, 10); }
推荐阅读
- 关于thinkphp function的调用问题
- 判断checkbox是否选中并获取值
- 代码记录|php读取excel表内容,并放入表格,需下载phpexcel类库
- 代码记录|jquery获取select框的值、单选框的值、textarea的值、获取input框的值
- 搜索词联想功能实现方案
- 一种简单的护眼模式实现
- navigationbar展示位置的获取