摘要: . 任意字符(除换行符以为:\n,\r,\u2028 or \u2029)\d 数字0-9\D 非\d,既不是数字0-9的字符\w 数字0-9,或字母a-z及A-Z(大写),或者下划线\W 非\w\s 空格符、TAB、换页符、换行符\S 非\s\t\r\n\f tab回车 换行 垂直制表符 换页符[ 阅读全文
posted @ 2018-07-26 17:18 镜镜哒 阅读(159) 评论(0) 推荐(0) 编辑
摘要: https://www.jianshu.com/p/d6ac6b0b41d6 https://www.jianshu.com/p/e6f6766cba13 阅读全文
posted @ 2018-07-26 17:05 镜镜哒 阅读(72) 评论(0) 推荐(0) 编辑
摘要: function request(url, callback) { fetch(url, {mode: 'cors', credentials: 'include', headers: new Headers({ 'X-Requested-With': 'XMLHttpRequest' })}) . 阅读全文
posted @ 2018-07-26 16:48 镜镜哒 阅读(650) 评论(0) 推荐(0) 编辑