摘要: 1、text类型 <input type="text" value={默认值} /> ,这种写法可以显示默认值,但不能对输入框进行编辑 正确写法: <input type="text" defaultValue={默认值} /> 2、checkbox类型 <input type="checkbox" 阅读全文
posted @ 2016-08-29 15:29 ximi007 阅读(9972) 评论(0) 推荐(0)
摘要: 中国标准时间格式转换成常用时间格式 Mon Aug 29 2016 15:07:30 GMT+0800 (中国标准时间) --> 2016-08-29 15:07:30 方法一: 方法二: 方法三: 使用moment库,https://momentjs.com/ 阅读全文
posted @ 2016-08-29 15:09 ximi007 阅读(416) 评论(0) 推荐(0)