摘要: /** * JS版 数字 金额格式化 * @param string s 需要处理的数字串 * @param string n 保留小数的位数 */function fmoney(s, n) { n = n >= 0 && n <= 20 ? n : 2; s = parseFloat((s + " 阅读全文
posted @ 2016-02-20 16:21 121686076 阅读(319) 评论(0) 推荐(0) 编辑
摘要: 1、常见浏览器窗口的尺寸断点:960px 1024px 1280px 1366px 1440px 1680px 2、 @media screen and (max-width:960px) // 960px 以下尺寸 @media screen and (min-width:961px) and ( 阅读全文
posted @ 2016-02-20 08:47 121686076 阅读(166) 评论(0) 推荐(0) 编辑