摘要: . B:粗体 被Strong淘汰 font-weight:bold; font-style:italic; font-size: 2em; font-family: 字体- color: 文字的颜色 2. u; del; strike有线 text-decoration: underline; no 阅读全文
posted @ 2021-05-16 11:44 剑心空明 阅读(0) 评论(0) 推荐(0) 编辑
摘要: 1. Form继续 1. 1 Select > option 下拉列表(combox) name:写在select上size: 显示几条multiple=multiple; 可多选option的属性 value= :用于提交的参数值label : 和内容一样用显示 四大恶心属性: 别的属性 size 阅读全文
posted @ 2021-05-16 11:44 剑心空明 阅读(0) 评论(0) 推荐(0) 编辑
摘要: 1. input标签:一堆type text:文本输入框, 默认 value属性:值maxlength: 最大输入个数size: 显示的个数(超级不准)placeholder: 默认显示灰色的 HTML5 <input maxlength="20" size="10" placeholder="。。 阅读全文
posted @ 2021-05-16 11:43 剑心空明 阅读(0) 评论(0) 推荐(0) 编辑
摘要: 1 OL>LI:有序列表 – order 不管哪个?>Li用于列表; 百度推荐列表, 淘宝商品信息一块一块的 思考: 3列的li怎么做? 设置ul宽度, 取消padding和list-style.设置li的宽度1/3, 浮动,清除浮动. 2. 自定义列表: dl > dt , dd <dl> <dt 阅读全文
posted @ 2021-05-16 11:42 剑心空明 阅读(0) 评论(0) 推荐(0) 编辑
摘要: 1. 换行与空格 HTML不认识空格和换行。变成一个空格。 &nbsp; 空格 <br /> 换行 <pre> 转义字符:> &gt; < &lt; " &quot; 2. DIV: 标准块 只有一个样式:display:block; 3 A标签 3.1 链接 href: 必须属性。链接到的地址 w 阅读全文
posted @ 2021-05-16 11:39 剑心空明 阅读(0) 评论(0) 推荐(0) 编辑
摘要: 1. nodejs 跨平台脚本语言。可做前端,可做后端。相当于JDK 1.1 安装 安装版不需要配置环境变量 非安装版: pathnode -vnpm -v – 更新npm npm install npm; -- 速度变快: cnpm方式 -- npm 命令 install 安装 -g 全局 -i局 阅读全文
posted @ 2021-05-16 11:39 剑心空明 阅读(2) 评论(0) 推荐(0) 编辑
摘要: 1. JDBC: 1.1 ODBC: 桥链接: ODBC是微软的。 通过桥连接链接数据库 – ip:1521/实例名 用户名 密码 – ip:服务名a1 1.2 JDBC: Java database connect: java代码链接数据 加载驱动 基本不用了jdk升级后 读取jar文件中配置 获 阅读全文
posted @ 2021-05-16 11:36 剑心空明 阅读(1) 评论(0) 推荐(0) 编辑
摘要: 1. 序列sequ ence:自增主键的问题 -- Create sequence create sequence SEQ_STUNO minvalue 1 -- 最小值 maxvalue 999999 -- 最大值 start with 1 -- 开始值 increment by 1 -- 增量( 阅读全文
posted @ 2021-05-16 11:34 剑心空明 阅读(1) 评论(0) 推荐(0) 编辑
摘要: 1. 补 约束: not null default(不是约束) unique: 名字 primary key: not null + unique foreign key check : 检查约束 alter table student add constraint Check_STUNAME_LE 阅读全文
posted @ 2021-05-16 11:32 剑心空明 阅读(0) 评论(0) 推荐(0) 编辑
摘要: 1. 子查询: select 子查询 -- select 子查询 select t1.ename, (select dname from dept t2 where t2.deptno = t1.deptno) from emp t1 -- 限制: 不能对应多行 select dname, (sel 阅读全文
posted @ 2021-05-16 11:29 剑心空明 阅读(0) 评论(0) 推荐(0) 编辑