web期末考试知识点
题型及知识点 a) 写css样式:32分(第3、4章) b) form表单:搞清楚有哪些具体的表单控件(第六章) c) 编写js脚本(第8,9章) 本文地址:https://blog.csdn.net/qq_43633156/article/details/111830711
推荐阅读
一、 知识点:上课内容全覆盖(除补充的html5和css3的内容)<html>
<head>
<title></title>
</head>
<body>
<hn> <p> <font> <b> <i> <s> <u> <img> <div> <hr> <br/> <span> <pre> <a>
<ol><li> <ul><li> <dl><dt><dd> <form> <input> <textarea> <select><option>….
</body>
</html>
i. 字体:font-size font-family font-weight font-variant font-style font
ii. 文本外观:color letter-spacing word-spacing line-height text-transform text-decoration text-align text-indent white-space
iii. 边框:border--style border--width border-**-color或者写复合属性,如border:1px solid red
iv. 外边距:margin(上右下左,顺时针)
v. 内边距:padding
vi. 背景:background-repeat background-color background-image background-size background-position background-attachment
vii. list-style
viii. 超链接伪类:a:link a:visited a:hover a:active(a也可以是类选择器或id选择器)
ix. 浮动:float(left,right);清除浮动:clear:left/right/both;overflow:visible/hidden/auto/scroll
x. 位置:position(static、relative、absolute、fixed)配合left、top
i. 有哪些关键字
ii. 变量定义:var 变量名
iii. 常用函数:prompt、alert、console.log
iv. 数组的定义和使用:var a=new Array[n]
v. DOM节点访问:document.getElementById getElementsByTagName getElementsByClassName等
vi. 元素html内容:innerHTML
vii. 元素样式:.style.
viii. 常用运算符
ix. 控制结构
x. Bom对象:window、screen、location、history、Date String
xi. 事件对象:event
xii. 事件处理:
语法:选择器{属性键值对}
基础选择器:标记选择器;类选择器(.);id选择器(#);通配符(*);
复合选择器:标签指定式;后代;并集
比如:设置id为aa的某标记文本:宋体,12px,红色#aa{font-family:宋体;font-size:12px;color:red;}
<form>
<input type=”text”>
</form>
搞清楚js的语法及框架<script type=”text/javascript”>
function **(){
}
</script>