摘要:
下面表格的关系 班级表关联着学生表 创建班级表: create table class(cid int not null unique auto_increment,caption char(18)); 教师表和班级表关联着课程表 创建教师表: create table teacher(tid in 阅读全文
摘要:
css(cascading style sheet)层叠样式表 就是控制html中的标签样式 CSS代码写法:选择器:{css代码属性:属性值} CSS代码引入 方式一 在head标签里面写 <style> p{background-color:green;height:100px;width:10 阅读全文
摘要:
html学习内容 html文件就是整个网页的架构 css就是给网页添加细节,给网页添加颜色,定制尺寸等 js动态效果(生成可以点击的连接按钮)(javascript) jquery就是对js的一种封装 bootstrap就是对上面所有内容的封装版 浏览器 客户端给服务端发送消息叫请求 服务端给客户端 阅读全文