2019年9月2日

js 时间格式化

摘要: // 对Date的扩展,将 Date 转化为指定格式的String // 月(M)、日(d)、小时(h)、分(m)、秒(s)、季度(q) 可以用 1-2 个占位符, // 年(y)可以用 1-4 个占位符,毫秒(S)只能用 1 个占位符(是 1-3 位的数字) // 例子: // (new Date 阅读全文

posted @ 2019-09-02 11:03 马什么梅 阅读(756) 评论(0) 推荐(0) 编辑

html css div固定底部

摘要: <div id="father"> <footer></footer> </div> #father{ position:relative; //父元素加入相对定位 不加则固定到html底部 } footer { position: absolute; //绝对定位 bottom: 0; left: 阅读全文

posted @ 2019-09-02 10:58 马什么梅 阅读(9300) 评论(0) 推荐(0) 编辑

导航