上一页 1 ··· 3 4 5 6 7 8 9 10 11 下一页
摘要: ##数据类型:Number Number()String n.toString()BooleanNullUndefinedObject ##运算:算术运算+-*/% 自增或自减运算符 var d=10;// b=d+3,d=d+1;b=d+++3console.log(b) var d=10;//d 阅读全文
posted @ 2019-11-19 13:44 chenlulu1122 阅读(57) 评论(0) 推荐(0)
摘要: ##元素布局1顺序:元素在页面内从上往下,从左往右依次 2悬浮float 作用:竖列或者文字环绕横排变竖列,原来的位置空出 float: left/right;clear:left/right/both; 父元素设置属性:overflow:hidden 3定位positionpostion:rela 阅读全文
posted @ 2019-11-19 13:42 chenlulu1122 阅读(236) 评论(0) 推荐(0)
摘要: ##元素的盒子模型1标签内容栏 属性width长 height 高 2边框 border border:solid 2px red;solid实线dotted点线dashed虚线double双线 border-radius:指定圆角半径(左上 右上 右下 左下) 3内边距 内容栏到边框距离 padd 阅读全文
posted @ 2019-11-19 13:41 chenlulu1122 阅读(119) 评论(0) 推荐(0)
摘要: ##样式 方式:1内联<div style="color:chartreuse">2内嵌<style> body { background-color: darkcyan } div { color: chartreuse; background-color:darkgoldenrod; }</st 阅读全文
posted @ 2019-11-19 13:40 chenlulu1122 阅读(232) 评论(0) 推荐(0)
摘要: 表单 form<form action="" method="GET"> <div> <input type="text"> #普通文本框 <input type="password" placeholder="默认提示"> #密码框,隐藏输入 <input type="checkbox"> #复选 阅读全文
posted @ 2019-11-19 13:39 chenlulu1122 阅读(84) 评论(0) 推荐(0)
摘要: 标签分类:块 body div h p ul ol li form table行内 span label b i del a 行内块 img input button 互换:display属性block inline inline-block 阅读全文
posted @ 2019-11-19 13:39 chenlulu1122 阅读(105) 评论(0) 推荐(0)
摘要: ##基本构成:元素标签 普通标签:h 标题hr 分割线br换行p 段落( b加粗 i斜体 del 删除 span label与表单form结合使用 )&lt< &gt> &nbsp 空格 &copy 版权符号 &yen人民币符号 img 图片<img src="../imgs/img02-5.png 阅读全文
posted @ 2019-11-19 13:38 chenlulu1122 阅读(192) 评论(0) 推荐(0)
摘要: 远程仓库 ###获取远程仓库内容git clone https://github.com/xxxxxxxxx #先复制远程仓库地址,在克隆到本地电脑(克隆的也是一个仓库) ###上传资料到远程仓库 git remote add origin https://github.com/xxxxxxxxx 阅读全文
posted @ 2019-11-19 13:36 chenlulu1122 阅读(73) 评论(0) 推荐(0)
摘要: 数据加密##输入加密 不能在pycharm运行import getpasspasswd=getpass.getpass('输入密码:')#作用相当于inputprint("密码:",passwd) ##存储加密import hashlib hash=hashlib.md5() #参数可填加盐字节串 阅读全文
posted @ 2019-11-19 13:36 chenlulu1122 阅读(270) 评论(0) 推荐(0)
摘要: 封存工作区,未记录 git stash save name #建立封存git stash list #查看所有封存git stash apply name #使用某个封存作为最终版 git stash drop [stash@{n}] 删除某一个工作区git stash clear 删除所有保存的工 阅读全文
posted @ 2019-11-19 13:35 chenlulu1122 阅读(265) 评论(0) 推荐(0)
上一页 1 ··· 3 4 5 6 7 8 9 10 11 下一页