06 2017 档案

摘要:1:CSS样式 //横屏模式 body.darkmask{ position: absolute; left: 0; top:0; overflow: hidden; width: 100%; height: 100%; background: #AA0000!important; z-index: 阅读全文
posted @ 2017-06-23 10:37 voledy 阅读(1852) 评论(0) 推荐(0)
摘要:常用正则表达式【集合】 一、校验数字的表达式 数字:^[0-9]*$ n位的数字:^\d{n}$ 至少n位的数字:^\d{n,}$ m-n位的数字:^\d{m,n}$ 零和非零开头的数字:^(0|[1-9][0-9]*)$ 非零开头的最多带两位小数的数字:^([1-9][0-9]*)+(.[0-9] 阅读全文
posted @ 2017-06-22 16:04 voledy 阅读(185) 评论(0) 推荐(0)