实时输出时间文本到一个 DOM 里
脚本:common_function.js
printTime(element, format)
element 指定元素对象或 CSS 选择器表达式,比如:
format 指定时间文本格式
需要 Moment.js 库
时间格式参考: http://momentjs.com/docs/
示例:printTime('#time1', 'YYYY年M月D日 H:mm:ss');
PS: 推荐在标记里定义属性 data-format 来指定时间文本格式
示例:printTime('#time2');