一.
11. B.hover是鼠标经过时出现的效果。
选择未访问link、已访问visited、悬浮hover和活动链接active,并设置它们的样式:
a:link {color:blue;}
a:visited {color:blue;}
a:hover {color:red;}
a:active {color:yellow;}
知识点: https://www.cnblogs.com/exmyth/p/3226654.html
1.在所有浏览器中,链接的默认外观是:
未被访问的链接带有下划线而且是蓝色的
已被访问的链接带有下划线而且是紫色的
活动链接带有下划线而且是红色的
2.在 CSS 定义中:
1. a:hover 必须位于 a:link 和 a:visited 之后,这样才能生效!
2. a:active 必须位于 a:hover 之后,这样才能生效!
于是得四者顺序:
a:link----->a:visited------>a:hover-------->a:active。
可以这样记:LoVe HAte(爱恨) [注意大写字母]
12. DE
-
A: escape js的全局对象,escape() 函数可对字符串进行编码,这样就可以在所有的计算机上读取该字符串。
https://www.runoob.com/jsref/jsref-escape.html - B:createAttribute js的document对象,createAttribute()方法用于创建一个指定名称的属性,并返回Attr 对象属性。https://www.runoob.com/jsref/met-document-createattribute.html
- C:getElementByld js的document对象,获取目标元素对象。getElementById() 方法可返回对拥有指定 ID 的第一个对象的引用。https://www.runoob.com/jsref/met-document-getelementbyid.html
- D:setTimeout setTimeout() 是属于 window 的方法,该方法用于在指定的毫秒数后调用函数或计算表达式。https://www.runoob.com/w3cnote/javascript-settimeout-usage.html
-
E:alter Window alert() 方法是属于Window 对象,alert() 方法用于显示带有一条指定消息和一个 确认 按钮的警告框。
https://www.runoob.com/jsref/met-win-alert.html