摘要:
常用函数 1. static: 检测数据是不是除了symbol外的原始数据 function isStatic(value) { return (typeof value === 'string' || typeof value === 'number' || typeof value === 'b 阅读全文
posted @ 2019-07-08 21:54
korea
阅读(566)
评论(0)
推荐(1)
摘要:
手机号 let phone = /^1((3[\d])|(4[5,6,9])|(5[0 3,5 9])|(6[5 7])|(7[0 8])|(8[1 3,5 8])|(9[1,8,9]))\d{8}$/ 大写字母 let Upper = /^[A Z]+$/ 日期,如: 2000 01 01 let 阅读全文
posted @ 2019-07-08 13:00
korea
阅读(213)
评论(0)
推荐(0)