03 2021 档案

摘要:一、Flex布局是什么? Flex是Flexible Box的缩写,翻译成中文就是“弹性盒子”,用来为盒装模型提供最大的灵活性。任何一个容器都可以指定为Flex布局。 .box{ display: -webkit-flex; /*在webkit内核的浏览器上使用要加前缀*/ display: fle 阅读全文
posted @ 2021-03-27 15:41 Hexrui 阅读(217) 评论(0) 推荐(0) 编辑
摘要:1.用户名正则 //用户名正则,4到16位(字母,数字,下划线,减号) var uPattern = /^[a-zA-Z0-9_-]{4,16}$/; //输出 true console.log(uPattern.test("dishait")); 2.密码强度正则 //密码强度正则,最少6位,包括 阅读全文
posted @ 2021-03-26 13:58 Hexrui 阅读(255) 评论(0) 推荐(0) 编辑
摘要:systemctl命令 # 开机运行服务: systemctl enable *.service # 取消开机运行 systemctl disable *.service # 启动服务 systemctl start *.service # 停止服务 systemctl stop *.service 阅读全文
posted @ 2021-03-26 13:50 Hexrui 阅读(77) 评论(0) 推荐(0) 编辑

返回顶部
点击右上角即可分享
微信分享提示