admin 管理员组

文章数量: 1184232


2023年12月19日发(作者:griddata在matlab是如何应用)

html5 web前端期末考试复习题

一、单选题(每小题2分)

1. 用HTML标记语言编写一个简单的网页,网页最基本的结构是

A、

B、

C、 … … (正确答案)

D、 … …

2. 在HTML语言中,设置表格中文字与边框距离的标签是

A、

B、

(正确答案)

C、

D、

3. 下面关于HTML描述不正确的是?

A、HTML称为超文本标记语言

B、HtML代码由各种标签组成

C、HTML文档的扩展名以.html结尾

D、HTML是一种编译型的编程语言(正确答案)

4. 以下标记符中,没有对应的结束标记的是

A、

B、

C、 </p><p style="text-indent: 2em;";>D、</p><p style="text-indent: 2em;";>(正确答案) </p><p style="text-indent: 2em;";>5. A文件夹与文件是同级,其中A下有,现在我们希望在文件中创建超链接,链接到,应该在页面代码中如何描述超链接href属性?( ) </p><p style="text-indent: 2em;";>A、../../ </p><p style="text-indent: 2em;";>B、./ </p><p style="text-indent: 2em;";>C、../(正确答案) </p><p style="text-indent: 2em;";>D、 </p><p style="text-indent: 2em;";>6. 在HTML中,( )标签用于在网页中创建表单。 </p><p style="text-indent: 2em;";>A、<SELECT> </p><p style="text-indent: 2em;";>B、<TABLE> </p><p style="text-indent: 2em;";>C、<INPUT> </p><p style="text-indent: 2em;";>D、<FORM>(正确答案) </p><p style="text-indent: 2em;";>7. HTML指的是( )。 </p><p style="text-indent: 2em;";>A、超文本标记语言(Hyper Text Markup Language)(正确答案) </p><p style="text-indent: 2em;";>B、家庭工具标记语言(Home Tool Markup Language) </p><p style="text-indent: 2em;";>C、超链接和文本标记语言(Hyperlinks and Text Markup Language) </p><p style="text-indent: 2em;";>D、以上说法都不对 </p><p style="text-indent: 2em;";>8. 下列哪一项不是表单元素?( ) </p><p style="text-indent: 2em;";>A、<select> </p><p style="text-indent: 2em;";>B、<img>(正确答案) </p><p style="text-indent: 2em;";>C、<textarea> </p><p style="text-indent: 2em;";>D、<input> </p><p style="text-indent: 2em;";>9. 下面哪一项是换行符标记?( ) </p><p style="text-indent: 2em;";>A、<p> </p><p style="text-indent: 2em;";>B、</p><p style="text-indent: 2em;";>(正确答案) </p><p style="text-indent: 2em;";>C、<font> </p><p style="text-indent: 2em;";>D、<body> </p><p style="text-indent: 2em;";>10. 以下标记符中,用于设置页面标题的是( )。 </p><p style="text-indent: 2em;";>A、<caption> </p><p style="text-indent: 2em;";>B、<HTML> </p><p style="text-indent: 2em;";>C、<title>(正确答案) </p><p style="text-indent: 2em;";>D、<head> </p><p style="text-indent: 2em;";>11. 以下的HTML中,哪个是正确引用外部样式表的方法?( ) </p><p style="text-indent: 2em;";>A、<stylesheet></stylesheet> </p><p style="text-indent: 2em;";>B、<link rel="stylesheet" type="text/css" href="">(正确答案) </p><p style="text-indent: 2em;";>C、<style src=""> </p><p style="text-indent: 2em;";>D、以上都不是 </p><p style="text-indent: 2em;";>12. 下面哪项不属于HTML文档的基本组成部分?( ) </p><p style="text-indent: 2em;";>A、<p></p>(正确答案) </p><p style="text-indent: 2em;";>B、<head></head> </p><p style="text-indent: 2em;";>C、<html></html> </p><p style="text-indent: 2em;";>D、<body></body> </p><p style="text-indent: 2em;";>13. 想要使用户在单击超链接时,弹出一个新的网页窗口,代码是( )。 </p><p style="text-indent: 2em;";>A、<A href="" target="_top">新闻</A> </p><p style="text-indent: 2em;";>B、<A href="" target="_parent">新闻</A> </p><p style="text-indent: 2em;";>C、<A href="" target="_self">新闻</A> </p><p style="text-indent: 2em;";>D、<A href="" target="_blank">新闻</A>(正确答案) </p><p style="text-indent: 2em;";>14. 在HTML中,可以使用( )标记向网页中插入GIF动画文件。 </p><p style="text-indent: 2em;";>A、<BODY> </p><p style="text-indent: 2em;";>B、<FORM> </p><p style="text-indent: 2em;";>C、<TABLE> </p><p style="text-indent: 2em;";>D、<IMG>(正确答案) </p><p style="text-indent: 2em;";>15. 下面选项中,哪个可以设置网页中某个元素的右外边距为10像素?( ) </p><p style="text-indent: 2em;";>A、margin-right:100px; </p><p style="text-indent: 2em;";>B、margin: 0 10px 0 0;(正确答案) </p><p style="text-indent: 2em;";>C、 margin: 0 0 0 10px; </p><p style="text-indent: 2em;";>D、 margin: 10px 0 0 </p><p style="text-indent: 2em;";>答案解析:当margin属性值为3个参数时,表示设置上、左右、下;当前margin属性值为4个参数时,表示设置上、右、下、左; </p><p style="text-indent: 2em;";>16. 下列哪个选项的CSS语法是正确的?( ) </p><p style="text-indent: 2em;";>A、 body {color: black}(正确答案) </p><p style="text-indent: 2em;";>B、 body:color=black </p><p style="text-indent: 2em;";>C、{body;color:black} </p><p style="text-indent: 2em;";>D、 {body:color=black(body} </p><p style="text-indent: 2em;";>17. 怎样给所有的<h1>标签添加背景颜色( )。 </p><p style="text-indent: 2em;";>A、 { background-color:#ffffff } </p><p style="text-indent: 2em;";>B、 #h1 { background-color:#ffffff } </p><p style="text-indent: 2em;";>C、 h1 { background-color:#ffffff; }(正确答案) </p><p style="text-indent: 2em;";>D、 .h1 { background-color:#ffffff } </p><p style="text-indent: 2em;";>18. 下列哪一项是CSS正确的语法构成( )。 </p><p style="text-indent: 2em;";>A、 {body;color:black} </p><p style="text-indent: 2em;";>B、 body{color:black}(正确答案) </p><p style="text-indent: 2em;";>C、 body:color=black </p><p style="text-indent: 2em;";>D、 {body:color=black} </p><p style="text-indent: 2em;";>19. 关于float描述错误的是( ) </p><p style="text-indent: 2em;";>A、 float:right </p><p style="text-indent: 2em;";>B、 float:none </p><p style="text-indent: 2em;";>C、 float:center(正确答案) </p><p style="text-indent: 2em;";>D、 float:left </p><p style="text-indent: 2em;";>20. 下面哪个方法可以去掉文本超链接的下划线( )。 </p><p style="text-indent: 2em;";>A、 a{ underline:none; } </p><p style="text-indent: 2em;";>B、 a{ text-decoration:none; }(正确答案) </p><p style="text-indent: 2em;";>C、 a{ text-decoration:no underline; } </p><p style="text-indent: 2em;";>D、 a{ decoration:no underline; } </p><p style="text-indent: 2em;";>21. 下面哪个语句是把段落的字体设置为黑体、大小18像素、颜色为红色( )。 </p><p style="text-indent: 2em;";>A、 p{font-family:黑体;font-size:18pc; font-color:red} </p><p style="text-indent: 2em;";>B、 p{font-family:黑体;font-size:18px; color:#ff0000}(正确答案) </p><p style="text-indent: 2em;";>C、 p{font:黑体 18px #00ff00} </p><p style="text-indent: 2em;";>22. 在CSS中,下列设置背景颜色为黑色的代码错误的是( )。 </p><p style="text-indent: 2em;";>A、 background: RGB(0,0,0) </p><p style="text-indent: 2em;";>B、 background-color: #000 </p><p style="text-indent: 2em;";>C、 background-color: black </p><p style="text-indent: 2em;";>D、 background: #FFFFFF(正确答案) </p><p style="text-indent: 2em;";>答案解析:#FFFFFF表示白色,#000000表示黑色 </p><p style="text-indent: 2em;";>23. 设置字符间距为15px的语句为( )。 </p><p style="text-indent: 2em;";>A、 letter-spacing:15px(正确答案) </p><p style="text-indent: 2em;";>B、 line-spacing:15px </p><p style="text-indent: 2em;";>C、 line-height:15px </p><p style="text-indent: 2em;";>D、 letter-height:15px </p><p style="text-indent: 2em;";>24. 下列( )不属于CSS文本属性。 </p><p style="text-indent: 2em;";>A、 text-align </p><p style="text-indent: 2em;";>B、 text-transform </p><p style="text-indent: 2em;";>C、 font-size </p><p style="text-indent: 2em;";>D、 line-height(正确答案) </p><p style="text-indent: 2em;";>答案解析:A.字体大小 </p><p style="text-indent: 2em;";>B.控制文本大小写 </p><p style="text-indent: 2em;";>C.内容水平对齐方式 </p><p style="text-indent: 2em;";>D.行高 </p><p style="text-indent: 2em;";>25. CSS文件的扩展名为( )。 </p><p style="text-indent: 2em;";>A、 .css(正确答案) </p><p style="text-indent: 2em;";>B、 .htm </p><p style="text-indent: 2em;";>C、 .txt </p><p style="text-indent: 2em;";>D、 .HTML </p><p style="text-indent: 2em;";>26. 设置text-decoration属性的删除线的值为( )。 </p><p style="text-indent: 2em;";>A、 underline </p><p style="text-indent: 2em;";>B、 line-through </p><p style="text-indent: 2em;";>C、 overline(正确答案) </p><p style="text-indent: 2em;";>D、 blink </p><p style="text-indent: 2em;";>27. 下列哪个CSS属性可以更改样式表的字体颜色( )。 </p><p style="text-indent: 2em;";>A、 color:(正确答案) </p><p style="text-indent: 2em;";>B、 fgcolor: </p><p style="text-indent: 2em;";>C、 text-color: </p><p style="text-indent: 2em;";>D、 text-color= </p><p style="text-indent: 2em;";>28. 下面哪个CSS属性是用来改变背景颜色的( )。 </p><p style="text-indent: 2em;";>A、 color: </p><p style="text-indent: 2em;";>B、 text: </p><p style="text-indent: 2em;";>C、 bgcolor: </p><p style="text-indent: 2em;";>D、 background-color:(正确答案) </p><p style="text-indent: 2em;";>29. 下列哪段代码能够定义所有P标签内文字加粗( )。 </p><p style="text-indent: 2em;";>A、 < p style=”font-size:blod”> </p><p style="text-indent: 2em;";>B、 p{ font-weight:bold; }(正确答案) </p><p style="text-indent: 2em;";>C、 <p style=”text-size:blod”> </p><p style="text-indent: 2em;";>D、 p{ text-size:bold; } </p><p style="text-indent: 2em;";>30. CSS中如何产生带有正方形的项目的列表?( ) </p><p style="text-indent: 2em;";>A、 list-style-type: square(正确答案) </p><p style="text-indent: 2em;";>B、 type: square </p><p style="text-indent: 2em;";>C、 list-type: square </p><p style="text-indent: 2em;";>D、 type: 2 </p><p style="text-indent: 2em;";>31. 以下关于CSS样式中字体属性的说法,错误的是( )。 </p><p style="text-indent: 2em;";>A、 font-size用来设置文本字体的大小 </p><p style="text-indent: 2em;";>B、 font-color用来设置文本字体的颜色(正确答案) </p><p style="text-indent: 2em;";>C、 font-weight用来设置文本字体的粗细 </p><p style="text-indent: 2em;";>D、 font-family用来设置文本字体系列 </p><p style="text-indent: 2em;";>答案解析:使用color属性来设置文本字体的颜色,这里font-color是误导项 </p><p style="text-indent: 2em;";>32. 以下哪一项是CSS中的类选择器( )。 </p><p style="text-indent: 2em;";>A、 .div2(正确答案) </p><p style="text-indent: 2em;";>B、 h2 </p><p style="text-indent: 2em;";>C、 </p><p style="text-indent: 2em;";> </p><p style="text-indent: 2em;";>D、 #div1 </p><p style="text-indent: 2em;";>33. 如何显示这样一个边框:顶边框10像素、底边框5像素、左边框20像素、右边框1像素( )。 </p><p style="text-indent: 2em;";>A、 border-width:10px 5px 20px 1px </p><p style="text-indent: 2em;";>B、 border-width:10px 1px 5px 20px(正确答案) </p><p style="text-indent: 2em;";>C、 border-width:10px 20px 5px 1px </p><p style="text-indent: 2em;";>D、 border-width:5px 20px 10px 1px </p><p style="text-indent: 2em;";>34. 如何编写当i等于5时执行某些语句的条件语句?( ) </p><p style="text-indent: 2em;";>A、 if i=5 </p><p style="text-indent: 2em;";>B、 if i=5 then </p><p style="text-indent: 2em;";>C、 if (i==5)(正确答案) </p><p style="text-indent: 2em;";>D、 if i==5 then </p><p style="text-indent: 2em;";>35. 如何在警告框中写入“Hello World”?( ) </p><p style="text-indent: 2em;";>A、 msgBox("Hello World") </p><p style="text-indent: 2em;";>B、 alertBox="Hello World" </p><p style="text-indent: 2em;";>C、 alertBox("Hello World") </p><p style="text-indent: 2em;";>D、 alert("Hello World")(正确答案) </p><p style="text-indent: 2em;";>36. 引用名为“”的外部脚本的正确语法是( )。 </p><p style="text-indent: 2em;";>A、 <script name=""> </p><p style="text-indent: 2em;";>B、 <script href=""> </p><p style="text-indent: 2em;";>C、 <script src="">(正确答案) </p><p style="text-indent: 2em;";>37. 可以在下列哪个HTML元素中放置JavaScript代码?( ) </p><p style="text-indent: 2em;";>A、 <scripting> </p><p style="text-indent: 2em;";>B、 <JavaScript> </p><p style="text-indent: 2em;";>C、 <js> </p><p style="text-indent: 2em;";>D、 <script>(正确答案) </p><p style="text-indent: 2em;";>38. 定义JavaScript数组的正确方法是?( ) </p><p style="text-indent: 2em;";>A、 var txt = new Array(1:"tim",2:"kim",3:"jim") </p><p style="text-indent: 2em;";>B、 var txt = new Array="tim","kim","jim" </p><p style="text-indent: 2em;";>C、 var txt = new Array:1=("tim")2=("kim")3=("jim") </p><p style="text-indent: 2em;";>D、 var txt = new Array("tim","kim","jim")(正确答案) </p><p style="text-indent: 2em;";>39. 以下哪项不属于JavaScript的特征?( ) </p><p style="text-indent: 2em;";>[单选题] </p><p style="text-indent: 2em;";>A、 JavaScript是一种脚本语言 </p><p style="text-indent: 2em;";>B、 JavaScript是独立于平台的 </p><p style="text-indent: 2em;";>C、 JavaScript是事件驱动的 </p><p style="text-indent: 2em;";>D、 JavaScript代码需要编译以后才能执行(正确答案) </p><p style="text-indent: 2em;";>40. 可插入多行注释的JavaScript语法是?( ) </p><p style="text-indent: 2em;";>A、 <!--This comment has more than one line--> </p><p style="text-indent: 2em;";>B、 //This comment has more than one line// </p><p style="text-indent: 2em;";>C、 /This comment has more than one line/(正确答案) </p><p style="text-indent: 2em;";>41. 下列那种方式可以把信息输出到浏览器控制台?( ) </p><p style="text-indent: 2em;";>A、 alert() </p><p style="text-indent: 2em;";>B、 ()(正确答案) </p><p style="text-indent: 2em;";>C、 innerHTML </p><p style="text-indent: 2em;";>D、 () </p><p style="text-indent: 2em;";>答案解析:()方法用于在控制台输出信息。 </p><p style="text-indent: 2em;";>42. 下面哪个for循环是正确的?( ) </p><p style="text-indent: 2em;";>A、 for (i <= 5; i++) </p><p style="text-indent: 2em;";>B、 for (i = 0; i <= 5; i++)(正确答案) </p><p style="text-indent: 2em;";>C、 for (i = 0; i <= 5) </p><p style="text-indent: 2em;";>D、 for i = 1 to 5 </p><p style="text-indent: 2em;";>43. 在JavaScript中( "15">"7" )的运行结果正确的是( )。 </p><p style="text-indent: 2em;";>A、 TRUE </p><p style="text-indent: 2em;";>B、 FALSE(正确答案) </p><p style="text-indent: 2em;";>C、 7 </p><p style="text-indent: 2em;";>D、 15 </p><p style="text-indent: 2em;";>答案解析:首先可以确定是非相等的字符串比较,因为“1”的Unicode编码小于“7”的Unicode编码,所以结果为false。 </p><p style="text-indent: 2em;";>44. 向页面输出“Hello World”的正确JavaScript语法是 ( )。 </p><p style="text-indent: 2em;";>A、 "Hello World" </p><p style="text-indent: 2em;";>B、 ("Hello World") </p><p style="text-indent: 2em;";>C、 ("Hello World")(正确答案) </p><p style="text-indent: 2em;";>D、 ("Hello World") </p><p style="text-indent: 2em;";>二、多选题(每小题4分) </p><p style="text-indent: 2em;";>45. 以下( )内容是HTML文件的头部内容所包括的。 </p><p style="text-indent: 2em;";>网页标题、关键字(正确答案) </p><p style="text-indent: 2em;";>注释、表单域 </p><p style="text-indent: 2em;";>自动刷新、CSS样式(正确答案) </p><p style="text-indent: 2em;";>作者信息、网页描述、基础地址(正确答案) </p><p style="text-indent: 2em;";>46. 下列关于块级元素描述正确的是( )。 </p><p style="text-indent: 2em;";>可以设置宽高,如果不设置宽度,宽度将默认为父级的100%(正确答案) </p><p style="text-indent: 2em;";>通常浏览器会在块级元素前后另起一个新行(正确答案) </p><p style="text-indent: 2em;";>行高,内边距和外边距都可以设置(正确答案) </p><p style="text-indent: 2em;";>与其他块级元素并排在一行显示 </p><p style="text-indent: 2em;";>47. 以下哪个属性值属于Float这个属性( ) </p><p style="text-indent: 2em;";>A、 right(正确答案) </p><p style="text-indent: 2em;";>B、 left(正确答案) </p><p style="text-indent: 2em;";>C、 none(正确答案) </p><p style="text-indent: 2em;";>D、 center </p><p style="text-indent: 2em;";>48. 想让元素脱离文档普通流,需要把position属性值设置成( )。 </p><p style="text-indent: 2em;";>A、 absolute(正确答案) </p><p style="text-indent: 2em;";>B、 static </p><p style="text-indent: 2em;";>C、 relative </p><p style="text-indent: 2em;";>D、 fixed(正确答案) </p><p style="text-indent: 2em;";>答案解析:position属性值为absolute和fixed时可以脱离文档流 </p><p style="text-indent: 2em;";>49. 关于CSS的说法正确的有( ) </p><p style="text-indent: 2em;";>A、 CSS可以控制网页背景颜色(正确答案) </p><p style="text-indent: 2em;";>B、 Z-index的取值不能是负数 </p><p style="text-indent: 2em;";>C、 position可以实现盒子模型精确定位(正确答案) </p><p style="text-indent: 2em;";>D、 字体大小的单位可以使em(正确答案) </p><p style="text-indent: 2em;";>50. 下列哪个样式定义后,元素可以设置宽度和高度( )。 </p><p style="text-indent: 2em;";>A、 display:inline-block(正确答案) </p><p style="text-indent: 2em;";>B、 display:block(正确答案) </p><p style="text-indent: 2em;";>C、 display:inline </p><p style="text-indent: 2em;";>D、 display:none </p><p style="text-indent: 2em;";>答案解析:display:inline 表示设置元素为行内元素,行内元素不可以设置宽高。 </p><p style="text-indent: 2em;";>display:block 表示设置元素为块级元素,块级元素可以设置宽高。 </p><p style="text-indent: 2em;";>display:none 表示隐藏元素,此元素不会被显示。 </p><p style="text-indent: 2em;";>display:inline-block 表示设置元素为行内块元素,行内块元素可以设置宽高。 </p><p style="text-indent: 2em;";>51. CSS中的选择器包括( ) </p><p style="text-indent: 2em;";> </p><p style="text-indent: 2em;";>A、 超文本标记选择器 </p><p style="text-indent: 2em;";>B、 类选择器(正确答案) </p><p style="text-indent: 2em;";>C、 标签选择器(正确答案) </p><p style="text-indent: 2em;";>D、 ID选择器(正确答案) </p><p style="text-indent: 2em;";>52. 下列关于文本样式属性,描述正确的是( )。 </p><p style="text-indent: 2em;";> </p><p style="text-indent: 2em;";>A、 可以使用text-decoration:none,为超链接去除下划线(正确答案) </p><p style="text-indent: 2em;";>B、 一段文字需要首行缩进两个字的距离,应设置text-indent属性(正确答案) </p><p style="text-indent: 2em;";>C、 text-transform属性用于设置文本的装饰 </p><p style="text-indent: 2em;";>D、 text-align属性用于设置文本的水平对齐方式(正确答案) </p><p style="text-indent: 2em;";>答案解析:text-transform属性用于控制文本的大小写,text-decoration属性用于设置文本的修饰 </p><p style="text-indent: 2em;";>53. 所有的HTML元素都可以看作盒子,它包括( )。 </p><p style="text-indent: 2em;";>A、 元素的内边距(正确答案) </p><p style="text-indent: 2em;";>B、 元素的内容区域(正确答案) </p><p style="text-indent: 2em;";>C、 元素的外边距(正确答案) </p><p style="text-indent: 2em;";>D、 元素的边框(正确答案) </p><p style="text-indent: 2em;";>答案解析:一个盒子模型由四部分组成:内容、内边距、边框、外边距。 </p><p style="text-indent: 2em;";>54. 关于CSS基本语法说法正确的是( ) </p><p style="text-indent: 2em;";>A、 属性必须要包含在{ }号之中(正确答案) </p><p style="text-indent: 2em;";>B、 属性和属性值之间用等号链接 </p><p style="text-indent: 2em;";>C、 在有多个属性时,用“;”进行区分(正确答案) </p><p style="text-indent: 2em;";>D、 如果一个属性有几个值,则每个属性值之间用分号分隔开 </p><p style="text-indent: 2em;";>55. 以下关于CLASS和ID的说法正确的是( ) </p><p style="text-indent: 2em;";>A、 id和class只是在写法上有区别,在应用和意义上没有区别 </p><p style="text-indent: 2em;";>B、 id的应用方法:<指定标签 id=”id名”>(正确答案) </p><p style="text-indent: 2em;";>C、 class的定义方法是:.类名{样式};(正确答案) </p><p style="text-indent: 2em;";>D、 class的应用方法:<指定标签 class=“类名”>(正确答案) </p><p style="text-indent: 2em;";>56. 下面关于CSS的说法正确的有( ) </p><p style="text-indent: 2em;";>A、 对于中文可以使用word-spacing属性对字间距进行调整 </p><p style="text-indent: 2em;";>B、 整个BODY可以作为一个BOX(正确答案) </p><p style="text-indent: 2em;";>C、 CSS可以控制网页背景图片(正确答案) </p><p style="text-indent: 2em;";>D、 margin属性的属性值可以是百分比(正确答案) </p><p style="text-indent: 2em;";>答案解析:word-spacing属性用于定义英文单词之间的间距,对中文字符无效。 </p><p style="text-indent: 2em;";>三、判断题(每小题1分) </p><p style="text-indent: 2em;";>57. 在HTML表格中,rowspan属性能够实现单元格跨列。( ) </p><p style="text-indent: 2em;";>对 </p><p style="text-indent: 2em;";>错(正确答案) </p><p style="text-indent: 2em;";>58. 任何标签都可以通过加style属性来直接定义它的样式。 </p><p style="text-indent: 2em;";>对(正确答案) </p><p style="text-indent: 2em;";>错 </p><p style="text-indent: 2em;";>59. <span>标签简单而言是一个没有默认样式的区块容器标签。 </p><p style="text-indent: 2em;";>对 </p><p style="text-indent: 2em;";>错(正确答案) </p><p style="text-indent: 2em;";>60. 在W3C规范中,每一个标签都应当闭合,使用</p><p style="text-indent: 2em;";></br>可以实现和段落标签<p></p>同样的效果。 </p><p style="text-indent: 2em;";>对 </p><p style="text-indent: 2em;";>错(正确答案) </p><p style="text-indent: 2em;";>61. padding:10px;只设置上边填充为10像素,其它三边为零像素。( ) </p><p style="text-indent: 2em;";>对 </p><p style="text-indent: 2em;";>错(正确答案) </p><p style="text-indent: 2em;";>62. 在CSS中,使用//或<!---->用来书写一行注释。 </p><p style="text-indent: 2em;";>对 </p><p style="text-indent: 2em;";>错(正确答案) </p><p style="text-indent: 2em;";>63. 在CSS中,padding:1px 2px 3px 4px表示设置某个HTML元素的内边距上为1px、右为2px、下为3px、左为4px。 </p><p style="text-indent: 2em;";>对(正确答案) </p><p style="text-indent: 2em;";>错 </p><p style="text-indent: 2em;";>64. margin不可以单独定义某一个方向的值。 </p><p style="text-indent: 2em;";>对 </p><p style="text-indent: 2em;";>错(正确答案) </p><p style="text-indent: 2em;";>65. position允许用户精确定义元素框出现的相对位置。 </p><p style="text-indent: 2em;";>对(正确答案) </p><p style="text-indent: 2em;";>错 </p><p style="text-indent: 2em;";>66. 在CSS中,px是绝对长度单位,%是相对长度单位。( ) </p><p style="text-indent: 2em;";>对(正确答案) </p><p style="text-indent: 2em;";>错 </p><p style="text-indent: 2em;";>67. JavaScript中输出在控制台是。 </p><p style="text-indent: 2em;";>对 </p><p style="text-indent: 2em;";>错(正确答案) </p><p style="text-indent: 2em;";>68. 定义了一个变量,但没有为该变量赋值,如果alert该变量,JavaScript弹出的对话框中显示undefined。( ) </p><p style="text-indent: 2em;";>对(正确答案) </p><p style="text-indent: 2em;";>错 </p><p style="text-indent: 2em;";>答案解析:已声明但没有赋值的变量,它的类型为undefined </p></div><br><p><h2></h2></p> <!-- 附件 --> <p class="tag"> 本文标签: <a style="margin-right: 10px" href="/tag/205.html" target="_blank">设置</a> <a style="margin-right: 10px" href="/tag/428094.html" target="_blank">元素</a> <a style="margin-right: 10px" href="/tag/232.html" target="_blank">属性</a> <a style="margin-right: 10px" href="/tag/428046.html" target="_blank">答案</a> <a style="margin-right: 10px" href="/tag/748.html" target="_blank">文本</a> </p> <div class="roclinux-cn copyright"> <blockquote> <p> 版权声明:本文标题:html5 web前端期末考试复习题 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:<a href="http://www.roclinux.cn/p/1702931354a436415.html">http://www.roclinux.cn/p/1702931354a436415.html</a>, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。 </p> </blockquote> </div> </div> <div class="roclinux-cn block-wrap single-relative"> <h2 class="block-title"> 更多相关文章 </h2> <div class="roclinux-cn post-list"> <div class="roclinux-cn post-item"> <!--<div class="roclinux-cn post-item-cover">--> <!-- <a class="post-item-img" href="/b/1772608850a3557289.html" title="优化Pagefile.sys设置:打造流畅运行的电脑体验">--> <!-- <img class="hover-scale" src="/view/img/nopic.png" alt="优化Pagefile.sys设置:打造流畅运行的电脑体验">--> <!-- </a>--> <!-- <ul class="post-categories">--> <!-- <li><a href="/b" target="_blank">编程</a></li>--> <!-- </ul>--> <!--</div>--> <a href="/b/1772608850a3557289.html" class="post-item-title" title="优化Pagefile.sys设置:打造流畅运行的电脑体验"> <h3>优化Pagefile.sys设置:打造流畅运行的电脑体验</h3> <div class="roclinux-cn post-item-cover" style="display:inline-grid"> <ul class="post-categories"> <li> <a href="/b" target="_blank">编程</a> </li> </ul> </div> </a> <div class="roclinux-cn post-item-footer"> <div class="roclinux-cn tag-wrap"> </div> <div class="roclinux-cn post-item-meta">1月前</div> </div> <p class="post-item-summary">定义:在安装过程中创建的虚拟内存页面文件(名为“pagefile.sys”)特性:这个文件的大小是自己系统虚拟内存设置的最小值的大小。假如虚拟内存的设置为800MB-1600MB 那么你在自己的设定驱动盘下面就可看到大小为800</p> </div> <div class="roclinux-cn post-item"> <!--<div class="roclinux-cn post-item-cover">--> <!-- <a class="post-item-img" href="/b/1772609768a3557301.html" title="Pagefile.sys:内存辅助工具,使用还是删除?深入分析">--> <!-- <img class="hover-scale" src="/view/img/nopic.png" alt="Pagefile.sys:内存辅助工具,使用还是删除?深入分析">--> <!-- </a>--> <!-- <ul class="post-categories">--> <!-- <li><a href="/b" target="_blank">编程</a></li>--> <!-- </ul>--> <!--</div>--> <a href="/b/1772609768a3557301.html" class="post-item-title" title="Pagefile.sys:内存辅助工具,使用还是删除?深入分析"> <h3>Pagefile.sys:内存辅助工具,使用还是删除?深入分析</h3> <div class="roclinux-cn post-item-cover" style="display:inline-grid"> <ul class="post-categories"> <li> <a href="/b" target="_blank">编程</a> </li> </ul> </div> </a> <div class="roclinux-cn post-item-footer"> <div class="roclinux-cn tag-wrap"> </div> <div class="roclinux-cn post-item-meta">1月前</div> </div> <p class="post-item-summary">当您的 Windows 计算机的存储空间不足时,您可能会发现自己正在寻找释放其中一些空间的方法。 您可能遇到的这些非常规方法之一是删除 Pagefile.sys 文件。 但在考虑删除它之前,您应该知道 Pagefile.sys 是什么</p> </div> <div class="roclinux-cn post-item"> <!--<div class="roclinux-cn post-item-cover">--> <!-- <a class="post-item-img" href="/b/1772610291a3557305.html" title="告别混乱,用4步打造简洁高效的Windows操作平台">--> <!-- <img class="hover-scale" src="/view/img/nopic.png" alt="告别混乱,用4步打造简洁高效的Windows操作平台">--> <!-- </a>--> <!-- <ul class="post-categories">--> <!-- <li><a href="/b" target="_blank">编程</a></li>--> <!-- </ul>--> <!--</div>--> <a href="/b/1772610291a3557305.html" class="post-item-title" title="告别混乱,用4步打造简洁高效的Windows操作平台"> <h3>告别混乱,用4步打造简洁高效的Windows操作平台</h3> <div class="roclinux-cn post-item-cover" style="display:inline-grid"> <ul class="post-categories"> <li> <a href="/b" target="_blank">编程</a> </li> </ul> </div> </a> <div class="roclinux-cn post-item-footer"> <div class="roclinux-cn tag-wrap"> </div> <div class="roclinux-cn post-item-meta">1月前</div> </div> <p class="post-item-summary">右键菜单管理终极指南:4步打造高效Windows操作中心 Windows右键菜单是我们日常操作的重要入口,但随着软件安装增多,它往往变得臃肿不堪,导致操作效率低下。ContextMenuManager作为一款纯粹的Window</p> </div> <div class="roclinux-cn post-item"> <!--<div class="roclinux-cn post-item-cover">--> <!-- <a class="post-item-img" href="/b/1772626662a3557500.html" title="忘记电脑开机密码?快速破解教程,立刻生效!">--> <!-- <img class="hover-scale" src="/view/img/nopic.png" alt="忘记电脑开机密码?快速破解教程,立刻生效!">--> <!-- </a>--> <!-- <ul class="post-categories">--> <!-- <li><a href="/b" target="_blank">编程</a></li>--> <!-- </ul>--> <!--</div>--> <a href="/b/1772626662a3557500.html" class="post-item-title" title="忘记电脑开机密码?快速破解教程,立刻生效!"> <h3>忘记电脑开机密码?快速破解教程,立刻生效!</h3> <div class="roclinux-cn post-item-cover" style="display:inline-grid"> <ul class="post-categories"> <li> <a href="/b" target="_blank">编程</a> </li> </ul> </div> </a> <div class="roclinux-cn post-item-footer"> <div class="roclinux-cn tag-wrap"> </div> <div class="roclinux-cn post-item-meta">29天前</div> </div> <p class="post-item-summary">​如果小伙伴觉得每次开机都需要输入密码很烦,那么小伙伴应该学会 如何取消电脑开机密码。本篇文章,小编将以图文教学的方式,向小伙伴介绍如何在短短的1分钟内,就能够取消电脑开机密码,让小伙伴摆脱烦人的开机密码,快来</p> </div> <div class="roclinux-cn post-item"> <!--<div class="roclinux-cn post-item-cover">--> <!-- <a class="post-item-img" href="/p/1772664278a3557929.html" title="Windows10用户指南:如何简单设置,禁用U盘自动播放">--> <!-- <img class="hover-scale" src="/view/img/nopic.png" alt="Windows10用户指南:如何简单设置,禁用U盘自动播放">--> <!-- </a>--> <!-- <ul class="post-categories">--> <!-- <li><a href="/p" target="_blank">技术日记</a></li>--> <!-- </ul>--> <!--</div>--> <a href="/p/1772664278a3557929.html" class="post-item-title" title="Windows10用户指南:如何简单设置,禁用U盘自动播放"> <h3>Windows10用户指南:如何简单设置,禁用U盘自动播放</h3> <div class="roclinux-cn post-item-cover" style="display:inline-grid"> <ul class="post-categories"> <li> <a href="/p" target="_blank">技术日记</a> </li> </ul> </div> </a> <div class="roclinux-cn post-item-footer"> <div class="roclinux-cn tag-wrap"> </div> <div class="roclinux-cn post-item-meta">29天前</div> </div> <p class="post-item-summary">在使用Windows10系统的电脑中插入插入光盘或者U盘时,默认是自动播放的,这样会引入一些可能不安全的因素。因此,为了系统安全,有必要禁止光驱、U盘等自动播放。具体方法如下: 方法一:通过设置页面关闭 第1步:单击w</p> </div> <div class="roclinux-cn post-item"> <!--<div class="roclinux-cn post-item-cover">--> <!-- <a class="post-item-img" href="/b/1773204666a3559372.html" title="C#与文件属性:操作指南与实践指南">--> <!-- <img class="hover-scale" src="/view/img/nopic.png" alt="C#与文件属性:操作指南与实践指南">--> <!-- </a>--> <!-- <ul class="post-categories">--> <!-- <li><a href="/b" target="_blank">编程</a></li>--> <!-- </ul>--> <!--</div>--> <a href="/b/1773204666a3559372.html" class="post-item-title" title="C#与文件属性:操作指南与实践指南"> <h3>C#与文件属性:操作指南与实践指南</h3> <div class="roclinux-cn post-item-cover" style="display:inline-grid"> <ul class="post-categories"> <li> <a href="/b" target="_blank">编程</a> </li> </ul> </div> </a> <div class="roclinux-cn post-item-footer"> <div class="roclinux-cn tag-wrap"> </div> <div class="roclinux-cn post-item-meta">23天前</div> </div> <p class="post-item-summary">简介:C#作为流行的编程语言,广泛应用于Windows应用、Web应用和游戏开发等领域。本文档“C# 文档操作FileProperties”深入探讨了如何在C#中处理文件属性,包括基本文件属性的读取、修改和创建,以及如何操作文件的元数</p> </div> <div class="roclinux-cn post-item"> <!--<div class="roclinux-cn post-item-cover">--> <!-- <a class="post-item-img" href="/p/1773213819a3559479.html" title="救星来了!轻松破解Windows隐藏文件恢复,再也不用担心数据丢失!">--> <!-- <img class="hover-scale" src="/view/img/nopic.png" alt="救星来了!轻松破解Windows隐藏文件恢复,再也不用担心数据丢失!">--> <!-- </a>--> <!-- <ul class="post-categories">--> <!-- <li><a href="/p" target="_blank">技术日记</a></li>--> <!-- </ul>--> <!--</div>--> <a href="/p/1773213819a3559479.html" class="post-item-title" title="救星来了!轻松破解Windows隐藏文件恢复,再也不用担心数据丢失!"> <h3>救星来了!轻松破解Windows隐藏文件恢复,再也不用担心数据丢失!</h3> <div class="roclinux-cn post-item-cover" style="display:inline-grid"> <ul class="post-categories"> <li> <a href="/p" target="_blank">技术日记</a> </li> </ul> </div> </a> <div class="roclinux-cn post-item-footer"> <div class="roclinux-cn tag-wrap"> </div> <div class="roclinux-cn post-item-meta">23天前</div> </div> <p class="post-item-summary">显示隐藏文件的方法 打开文件资源管理器,点击顶部菜单栏的“查看”选项。在“显示隐藏”区域勾选“隐藏的项目”。此时所有隐藏文件和文件夹会以半透明图标显示,可直接访问或操作。 通过文件夹选项恢复 在文件资源管理器</p> </div> <div class="roclinux-cn post-item"> <!--<div class="roclinux-cn post-item-cover">--> <!-- <a class="post-item-img" href="/b/1773217513a3559518.html" title="宽带连接屡遭651?全面解析问题根源,轻松破解故障!">--> <!-- <img class="hover-scale" src="/view/img/nopic.png" alt="宽带连接屡遭651?全面解析问题根源,轻松破解故障!">--> <!-- </a>--> <!-- <ul class="post-categories">--> <!-- <li><a href="/b" target="_blank">编程</a></li>--> <!-- </ul>--> <!--</div>--> <a href="/b/1773217513a3559518.html" class="post-item-title" title="宽带连接屡遭651?全面解析问题根源,轻松破解故障!"> <h3>宽带连接屡遭651?全面解析问题根源,轻松破解故障!</h3> <div class="roclinux-cn post-item-cover" style="display:inline-grid"> <ul class="post-categories"> <li> <a href="/b" target="_blank">编程</a> </li> </ul> </div> </a> <div class="roclinux-cn post-item-footer"> <div class="roclinux-cn tag-wrap"> </div> <div class="roclinux-cn post-item-meta">22天前</div> </div> <p class="post-item-summary">我们日常使用网络的过程中有时候如果出现提示宽带连接错误651的提示,那么这个是什么原因你,其实宽带连接错误651为调制解调器(modem)发出的错误报告,一般情况下是未找到指定的端口。接下来我们来看看如何解决:</p> </div> <div class="roclinux-cn post-item"> <!--<div class="roclinux-cn post-item-cover">--> <!-- <a class="post-item-img" href="/b/1773219023a3559530.html" title="电脑没网?手机数据线来帮忙,瞬间连通网络!">--> <!-- <img class="hover-scale" src="/view/img/nopic.png" alt="电脑没网?手机数据线来帮忙,瞬间连通网络!">--> <!-- </a>--> <!-- <ul class="post-categories">--> <!-- <li><a href="/b" target="_blank">编程</a></li>--> <!-- </ul>--> <!--</div>--> <a href="/b/1773219023a3559530.html" class="post-item-title" title="电脑没网?手机数据线来帮忙,瞬间连通网络!"> <h3>电脑没网?手机数据线来帮忙,瞬间连通网络!</h3> <div class="roclinux-cn post-item-cover" style="display:inline-grid"> <ul class="post-categories"> <li> <a href="/b" target="_blank">编程</a> </li> </ul> </div> </a> <div class="roclinux-cn post-item-footer"> <div class="roclinux-cn tag-wrap"> </div> <div class="roclinux-cn post-item-meta">22天前</div> </div> <p class="post-item-summary">如何用手机数据线连接电脑上网,相信这个问题是我们很多人热切关注的问题,虽然比起以前我们又多了4G网,但比起无线网,手机数据还是要慢很多,而与宽带网络相比较,无线网也还是有很多的不足之处。因此,为了给大家一个满意的答复,接下来我将仔细地</p> </div> <div class="roclinux-cn post-item"> <!--<div class="roclinux-cn post-item-cover">--> <!-- <a class="post-item-img" href="/b/1773334383a3560757.html" title="轻松管理你的网络流量:限制Flash内容的使用篇">--> <!-- <img class="hover-scale" src="/view/img/nopic.png" alt="轻松管理你的网络流量:限制Flash内容的使用篇">--> <!-- </a>--> <!-- <ul class="post-categories">--> <!-- <li><a href="/b" target="_blank">编程</a></li>--> <!-- </ul>--> <!--</div>--> <a href="/b/1773334383a3560757.html" class="post-item-title" title="轻松管理你的网络流量:限制Flash内容的使用篇"> <h3>轻松管理你的网络流量:限制Flash内容的使用篇</h3> <div class="roclinux-cn post-item-cover" style="display:inline-grid"> <ul class="post-categories"> <li> <a href="/b" target="_blank">编程</a> </li> </ul> </div> </a> <div class="roclinux-cn post-item-footer"> <div class="roclinux-cn tag-wrap"> </div> <div class="roclinux-cn post-item-meta">21天前</div> </div> <p class="post-item-summary">注:以下内容转自不同的电脑教程第一章:WINXP全攻略一、优化启动设置(适用于家用版及专业版)1."我的电脑"->"属性"->"高级"</p> </div> <div class="roclinux-cn post-item"> <!--<div class="roclinux-cn post-item-cover">--> <!-- <a class="post-item-img" href="/p/1773659855a3564495.html" title="笔记本操作不再受扰!快速关闭触摸板步骤详解">--> <!-- <img class="hover-scale" src="/view/img/nopic.png" alt="笔记本操作不再受扰!快速关闭触摸板步骤详解">--> <!-- </a>--> <!-- <ul class="post-categories">--> <!-- <li><a href="/p" target="_blank">技术日记</a></li>--> <!-- </ul>--> <!--</div>--> <a href="/p/1773659855a3564495.html" class="post-item-title" title="笔记本操作不再受扰!快速关闭触摸板步骤详解"> <h3>笔记本操作不再受扰!快速关闭触摸板步骤详解</h3> <div class="roclinux-cn post-item-cover" style="display:inline-grid"> <ul class="post-categories"> <li> <a href="/p" target="_blank">技术日记</a> </li> </ul> </div> </a> <div class="roclinux-cn post-item-footer"> <div class="roclinux-cn tag-wrap"> </div> <div class="roclinux-cn post-item-meta">17天前</div> </div> <p class="post-item-summary">很多笔记本的触摸板不好用,想要禁止,然后另外连接键盘鼠标使用,小编自己就是使用的笔记本禁用触摸板驱动,安装完重启电脑后,在电脑右下角任务栏上有个图标,点鼠标右键,选择设置--定点装置属性--禁用,就可以了,想用的时候就开启回来就行了。</p> </div> <div class="roclinux-cn post-item"> <!--<div class="roclinux-cn post-item-cover">--> <!-- <a class="post-item-img" href="/p/1773679707a3564721.html" title="从头到尾,全面深度清理电脑上的SWF文件和Adobe Flash Player痕迹">--> <!-- <img class="hover-scale" src="/view/img/nopic.png" alt="从头到尾,全面深度清理电脑上的SWF文件和Adobe Flash Player痕迹">--> <!-- </a>--> <!-- <ul class="post-categories">--> <!-- <li><a href="/p" target="_blank">技术日记</a></li>--> <!-- </ul>--> <!--</div>--> <a href="/p/1773679707a3564721.html" class="post-item-title" title="从头到尾,全面深度清理电脑上的SWF文件和Adobe Flash Player痕迹"> <h3>从头到尾,全面深度清理电脑上的SWF文件和Adobe Flash Player痕迹</h3> <div class="roclinux-cn post-item-cover" style="display:inline-grid"> <ul class="post-categories"> <li> <a href="/p" target="_blank">技术日记</a> </li> </ul> </div> </a> <div class="roclinux-cn post-item-footer"> <div class="roclinux-cn tag-wrap"> </div> <div class="roclinux-cn post-item-meta">17天前</div> </div> <p class="post-item-summary">1、手动清理 (1)打开资源管理器,右键-属性,点击“磁盘清理”,然后选中要清理的文件,点击确定即可; (2)对于一些软件的卸载残留,可以打开注册表,找到各目录下的software子目录,从里面找那些你已经卸载过的软件</p> </div> <div class="roclinux-cn post-item"> <!--<div class="roclinux-cn post-item-cover">--> <!-- <a class="post-item-img" href="/p/1774216259a3569170.html" title="电脑没有声音怎么办?5种方法恢复声音_电脑突然没声音了 如何恢复正常">--> <!-- <img class="hover-scale" src="/view/img/nopic.png" alt="电脑没有声音怎么办?5种方法恢复声音_电脑突然没声音了 如何恢复正常">--> <!-- </a>--> <!-- <ul class="post-categories">--> <!-- <li><a href="/p" target="_blank">技术日记</a></li>--> <!-- </ul>--> <!--</div>--> <a href="/p/1774216259a3569170.html" class="post-item-title" title="电脑没有声音怎么办?5种方法恢复声音_电脑突然没声音了 如何恢复正常"> <h3>电脑没有声音怎么办?5种方法恢复声音_电脑突然没声音了 如何恢复正常</h3> <div class="roclinux-cn post-item-cover" style="display:inline-grid"> <ul class="post-categories"> <li> <a href="/p" target="_blank">技术日记</a> </li> </ul> </div> </a> <div class="roclinux-cn post-item-footer"> <div class="roclinux-cn tag-wrap"> </div> <div class="roclinux-cn post-item-meta">11天前</div> </div> <p class="post-item-summary">电脑“没有声音”是许多用户在播放声音过程中可能会遇到的问题。当电脑突然“静音”而找不到原因时,确实令人头疼。那么,为什么?又该如何快速恢复?本文将为你提供一份详细而实用的快速解决指南。 一、电脑没声音原因分析 在</p> </div> <div class="roclinux-cn post-item"> <!--<div class="roclinux-cn post-item-cover">--> <!-- <a class="post-item-img" href="/b/1774287282a3569996.html" title="TP Link 路由器 设置_tplink ddns">--> <!-- <img class="hover-scale" src="/view/img/nopic.png" alt="TP Link 路由器 设置_tplink ddns">--> <!-- </a>--> <!-- <ul class="post-categories">--> <!-- <li><a href="/b" target="_blank">编程</a></li>--> <!-- </ul>--> <!--</div>--> <a href="/b/1774287282a3569996.html" class="post-item-title" title="TP Link 路由器 设置_tplink ddns"> <h3>TP Link 路由器 设置_tplink ddns</h3> <div class="roclinux-cn post-item-cover" style="display:inline-grid"> <ul class="post-categories"> <li> <a href="/b" target="_blank">编程</a> </li> </ul> </div> </a> <div class="roclinux-cn post-item-footer"> <div class="roclinux-cn tag-wrap"> </div> <div class="roclinux-cn post-item-meta">10天前</div> </div> <p class="post-item-summary">入手某型号的TP LINK 路由器一台。希望做些定制化的设置。记录一下。 1,光猫拨号改为路由器拨号 光猫的型号是吉比特某款,其地址是192.168.1.1,此光猫没有无线。所接的路由器地址是192.168.2.1。</p> </div> <div class="roclinux-cn post-item"> <!--<div class="roclinux-cn post-item-cover">--> <!-- <a class="post-item-img" href="/b/1774293022a3570062.html" title="如何美化桌面图标并使其透明化">--> <!-- <img class="hover-scale" src="/view/img/nopic.png" alt="如何美化桌面图标并使其透明化">--> <!-- </a>--> <!-- <ul class="post-categories">--> <!-- <li><a href="/b" target="_blank">编程</a></li>--> <!-- </ul>--> <!--</div>--> <a href="/b/1774293022a3570062.html" class="post-item-title" title="如何美化桌面图标并使其透明化"> <h3>如何美化桌面图标并使其透明化</h3> <div class="roclinux-cn post-item-cover" style="display:inline-grid"> <ul class="post-categories"> <li> <a href="/b" target="_blank">编程</a> </li> </ul> </div> </a> <div class="roclinux-cn post-item-footer"> <div class="roclinux-cn tag-wrap"> </div> <div class="roclinux-cn post-item-meta">10天前</div> </div> <p class="post-item-summary">经常看到有的人桌面图标下总有一块区域与桌面背景不同,看起来很不美观,应该怎样去除呢?   方法1:在桌面空白处点右键,“属性”→“桌面”→“自定义桌面”→“web”选项卡,将“网页”下面方框里的网址全部删除,并保持在“锁定桌面项目”前</p> </div> <div class="roclinux-cn post-item"> <!--<div class="roclinux-cn post-item-cover">--> <!-- <a class="post-item-img" href="/b/1774295002a3570085.html" title="两台电脑共用一根网线上网详细教程_两台电脑共用一条网线">--> <!-- <img class="hover-scale" src="/view/img/nopic.png" alt="两台电脑共用一根网线上网详细教程_两台电脑共用一条网线">--> <!-- </a>--> <!-- <ul class="post-categories">--> <!-- <li><a href="/b" target="_blank">编程</a></li>--> <!-- </ul>--> <!--</div>--> <a href="/b/1774295002a3570085.html" class="post-item-title" title="两台电脑共用一根网线上网详细教程_两台电脑共用一条网线"> <h3>两台电脑共用一根网线上网详细教程_两台电脑共用一条网线</h3> <div class="roclinux-cn post-item-cover" style="display:inline-grid"> <ul class="post-categories"> <li> <a href="/b" target="_blank">编程</a> </li> </ul> </div> </a> <div class="roclinux-cn post-item-footer"> <div class="roclinux-cn tag-wrap"> </div> <div class="roclinux-cn post-item-meta">10天前</div> </div> <p class="post-item-summary">一、准备工作 两台电脑,一根联网网线。两台电脑要求都有无线网卡,不过现在几乎所有笔记本都已经集成无线网卡和以太网卡,这个就不用担心了。 二、插网线的电脑的设置 两台笔记本必然有一台电脑要插入网线</p> </div> <div class="roclinux-cn post-item"> <!--<div class="roclinux-cn post-item-cover">--> <!-- <a class="post-item-img" href="/b/1774295535a3570092.html" title="两台电脑用一根网线连接组成局域网共享传输文件_网站连接两台电脑传文件">--> <!-- <img class="hover-scale" src="/view/img/nopic.png" alt="两台电脑用一根网线连接组成局域网共享传输文件_网站连接两台电脑传文件">--> <!-- </a>--> <!-- <ul class="post-categories">--> <!-- <li><a href="/b" target="_blank">编程</a></li>--> <!-- </ul>--> <!--</div>--> <a href="/b/1774295535a3570092.html" class="post-item-title" title="两台电脑用一根网线连接组成局域网共享传输文件_网站连接两台电脑传文件"> <h3>两台电脑用一根网线连接组成局域网共享传输文件_网站连接两台电脑传文件</h3> <div class="roclinux-cn post-item-cover" style="display:inline-grid"> <ul class="post-categories"> <li> <a href="/b" target="_blank">编程</a> </li> </ul> </div> </a> <div class="roclinux-cn post-item-footer"> <div class="roclinux-cn tag-wrap"> </div> <div class="roclinux-cn post-item-meta">10天前</div> </div> <p class="post-item-summary">两台电脑传输文件有很多方法,小的qq就解决了,稍微大点的可以通过安装的快传软件来达到目的,当然用u盘也是可以的。这都还好,那如果传输文件数量多或者大文件(超过百G的)的时候该怎么办呢,硬盘是一种,但因为是传输的中间介质,所以比较麻烦,</p> </div> <div class="roclinux-cn post-item"> <!--<div class="roclinux-cn post-item-cover">--> <!-- <a class="post-item-img" href="/p/1774317729a3570346.html" title="win7笔记本电脑设置WiFi热点_win7笔记本做wifi热点">--> <!-- <img class="hover-scale" src="/view/img/nopic.png" alt="win7笔记本电脑设置WiFi热点_win7笔记本做wifi热点">--> <!-- </a>--> <!-- <ul class="post-categories">--> <!-- <li><a href="/p" target="_blank">技术日记</a></li>--> <!-- </ul>--> <!--</div>--> <a href="/p/1774317729a3570346.html" class="post-item-title" title="win7笔记本电脑设置WiFi热点_win7笔记本做wifi热点"> <h3>win7笔记本电脑设置WiFi热点_win7笔记本做wifi热点</h3> <div class="roclinux-cn post-item-cover" style="display:inline-grid"> <ul class="post-categories"> <li> <a href="/p" target="_blank">技术日记</a> </li> </ul> </div> </a> <div class="roclinux-cn post-item-footer"> <div class="roclinux-cn tag-wrap"> </div> <div class="roclinux-cn post-item-meta">10天前</div> </div> <p class="post-item-summary">一般情况下,我们是利用路由器设置WiFi热点,但是如果没有路由器,而有网线,我们可以利用笔记本电脑来设置WiFi热点,这里介绍如何通过笔记本电脑连接网线设置WiFi热点。笔记本电脑设置WiFi热点,需要明确两点: 1、电脑必须</p> </div> <div class="roclinux-cn post-item"> <!--<div class="roclinux-cn post-item-cover">--> <!-- <a class="post-item-img" href="/b/1774467170a3571499.html" title="新电脑网速慢得离谱?这些建议试试看!">--> <!-- <img class="hover-scale" src="/view/img/nopic.png" alt="新电脑网速慢得离谱?这些建议试试看!">--> <!-- </a>--> <!-- <ul class="post-categories">--> <!-- <li><a href="/b" target="_blank">编程</a></li>--> <!-- </ul>--> <!--</div>--> <a href="/b/1774467170a3571499.html" class="post-item-title" title="新电脑网速慢得离谱?这些建议试试看!"> <h3>新电脑网速慢得离谱?这些建议试试看!</h3> <div class="roclinux-cn post-item-cover" style="display:inline-grid"> <ul class="post-categories"> <li> <a href="/b" target="_blank">编程</a> </li> </ul> </div> </a> <div class="roclinux-cn post-item-footer"> <div class="roclinux-cn tag-wrap"> </div> <div class="roclinux-cn post-item-meta">8天前</div> </div> <p class="post-item-summary">新买的电脑网速慢的解决方案 新买的电脑,在宽带一切正常的情况下,如果网速特别慢。可以通过启用组策略gpedit.msc修改配置来解除系统对网速的限制。开始菜单右键运行,打开运行窗口,输入gp</p> </div> <div class="roclinux-cn post-item"> <!--<div class="roclinux-cn post-item-cover">--> <!-- <a class="post-item-img" href="/p/1774508212a3571967.html" title="192.168.1.1的秘密通道:探索家庭网络的入口">--> <!-- <img class="hover-scale" src="/view/img/nopic.png" alt="192.168.1.1的秘密通道:探索家庭网络的入口">--> <!-- </a>--> <!-- <ul class="post-categories">--> <!-- <li><a href="/p" target="_blank">技术日记</a></li>--> <!-- </ul>--> <!--</div>--> <a href="/p/1774508212a3571967.html" class="post-item-title" title="192.168.1.1的秘密通道:探索家庭网络的入口"> <h3>192.168.1.1的秘密通道:探索家庭网络的入口</h3> <div class="roclinux-cn post-item-cover" style="display:inline-grid"> <ul class="post-categories"> <li> <a href="/p" target="_blank">技术日记</a> </li> </ul> </div> </a> <div class="roclinux-cn post-item-footer"> <div class="roclinux-cn tag-wrap"> </div> <div class="roclinux-cn post-item-meta">8天前</div> </div> <p class="post-item-summary">虽然前面小编也发布过关于的相关信息,但是都是解释相关的问题的,没有好好介绍关于的信息,今天小编星期八就给大家介绍一下的详细信息! 是什么? 192.168.0.1属于IP地址的</p> </div> </div> </div> <div class="roclinux-cn comments"> <div class="roclinux-cn postcomm block-wrap" id="divCommentPost"> <h2 class="block-title"> 发表评论 </h2> <form id="saypl" target="_self" method="post" name="saypl" action="/comment/create/436415.html?safe_token=tPcNEdnUYHc1jIZVMxE48zRTTEaBTLD_2FYDukSinXsZdZYdJlvtn2t_2F7XMr3PrLzH5SfH9jjQkadaYyGSw9e5nQ_3D_3D"> <input type="hidden" name="doctype" value="1" /> <input type="hidden" name="quotepid" value="0" /> <div class="roclinux-cn comment-box comment-textarea"> <textarea name="message" id="txaArticle" class="text" cols="50" rows="4" tabindex="5" placeholder="评论内容"></textarea> </div> <input name="sumbit" type="submit" tabindex="6" value="发表评论" class="sub"> </form> </div> </div> <div class="sn-comments"> <div class="sn-comments__title">全部评论 0</div> <div class="sn-comments__body"> <div class="sn-empty">暂无评论</div> </div> </div> </div> </div> <div class="aside"> <div class="block-wrap" id="side-top-dxt"> <h2 class="block-title">推荐文章<i class="mcico mico-right"></i></h2> <div class="mcdas"> <a href="/p/1773726213a3565008.html" title="Windows7系统下笔记本做无线路由设置无线网络共享_win7 设置网络路由" class="photo-item" target="_blank" style="background:#364cc6"> <!--<img src="/view/img/nopic.png" alt="Windows7系统下笔记本做无线路由设置无线网络共享_win7 设置网络路由" class="photo-item-img hover-scale" />--> <div class="photo-item-inner"> <h3 class="photo-item-title"> Windows7系统下笔记本做无线路由设置无线网络共享_win7 设置网络路由 </h3> </div> </a> <a href="/p/1773918360a3567216.html" title="USB设备无法识别问题的解决方法" class="photo-item" target="_blank" style="background:#364cc6"> <!--<img src="/view/img/nopic.png" alt="USB设备无法识别问题的解决方法" class="photo-item-img hover-scale" />--> <div class="photo-item-inner"> <h3 class="photo-item-title"> USB设备无法识别问题的解决方法 </h3> </div> </a> <a href="/b/1773957930a3567675.html" title="Win10 如何设置开机密码?又如何更改开机密码为空密码?_密码未更改请尝试再次使用空白密码" class="photo-item" target="_blank" style="background:#364cc6"> <!--<img src="/view/img/nopic.png" alt="Win10 如何设置开机密码?又如何更改开机密码为空密码?_密码未更改请尝试再次使用空白密码" class="photo-item-img hover-scale" />--> <div class="photo-item-inner"> <h3 class="photo-item-title"> Win10 如何设置开机密码?又如何更改开机密码为空密码?_密码未更改请尝试再次使用空白密码 </h3> </div> </a> <a href="/p/1774249257a3569552.html" title="电脑没声音怎么办?电脑没声音了怎么恢复?_电脑没有声音了怎么恢复" class="photo-item" target="_blank" style="background:#364cc6"> <!--<img src="/view/img/nopic.png" alt="电脑没声音怎么办?电脑没声音了怎么恢复?_电脑没有声音了怎么恢复" class="photo-item-img hover-scale" />--> <div class="photo-item-inner"> <h3 class="photo-item-title"> 电脑没声音怎么办?电脑没声音了怎么恢复?_电脑没有声音了怎么恢复 </h3> </div> </a> <a href="/b/1774259497a3569673.html" title="Ubuntu内存清理经验整理_ubuntu清理内存" class="photo-item" target="_blank" style="background:#364cc6"> <!--<img src="/view/img/nopic.png" alt="Ubuntu内存清理经验整理_ubuntu清理内存" class="photo-item-img hover-scale" />--> <div class="photo-item-inner"> <h3 class="photo-item-title"> Ubuntu内存清理经验整理_ubuntu清理内存 </h3> </div> </a> </div> </div> <div class="block-wrap" id="side-hot-view-item"> <h2 class="block-title">热门文章<i class="mcico mico-right"></i> </h2> <ul> <li class="mclas"> <!--<div class="list-img">--> <!-- <a href="/b/1773599965a3563794.html" target="_blank">--> <!-- <img src="/view/img/nopic.png" alt="我的Top-Kart.dll及Tenu系列.dll出了问题,如何快速解决?" class="hover-scale" />--> <!-- </a>--> <!--</div>--> <div class="list-content"> <a title="我的Top-Kart.dll及Tenu系列.dll出了问题,如何快速解决?" target="_blank" href="/b/1773599965a3563794.html"> <h3>我的Top-Kart.dll及Tenu系列.dll出了问题,如何快速解决?</h3> </a> <span class="post-date">18天前</span> </div> </li> <li class="mclas"> <!--<div class="list-img">--> <!-- <a href="/b/1773675830a3564676.html" target="_blank">--> <!-- <img src="/view/img/nopic.png" alt="VB6 ByRef用法困惑?解答类型不匹配的难题!" class="hover-scale" />--> <!-- </a>--> <!--</div>--> <div class="list-content"> <a title="VB6 ByRef用法困惑?解答类型不匹配的难题!" target="_blank" href="/b/1773675830a3564676.html"> <h3>VB6 ByRef用法困惑?解答类型不匹配的难题!</h3> </a> <span class="post-date">17天前</span> </div> </li> <li class="mclas"> <!--<div class="list-img">--> <!-- <a href="/p/1773684455a3564778.html" target="_blank">--> <!-- <img src="/view/img/nopic.png" alt="当Office启动总是以安全模式运行,解决步骤分享!" class="hover-scale" />--> <!-- </a>--> <!--</div>--> <div class="list-content"> <a title="当Office启动总是以安全模式运行,解决步骤分享!" target="_blank" href="/p/1773684455a3564778.html"> <h3>当Office启动总是以安全模式运行,解决步骤分享!</h3> </a> <span class="post-date">17天前</span> </div> </li> <li class="mclas"> <!--<div class="list-img">--> <!-- <a href="/p/1773799819a3565850.html" target="_blank">--> <!-- <img src="/view/img/nopic.png" alt="CPU使用率100%怎么办_cpu占用率100%怎么解决" class="hover-scale" />--> <!-- </a>--> <!--</div>--> <div class="list-content"> <a title="CPU使用率100%怎么办_cpu占用率100%怎么解决" target="_blank" href="/p/1773799819a3565850.html"> <h3>CPU使用率100%怎么办_cpu占用率100%怎么解决</h3> </a> <span class="post-date">16天前</span> </div> </li> <li class="mclas"> <!--<div class="list-img">--> <!-- <a href="/b/1773970694a3567822.html" target="_blank">--> <!-- <img src="/view/img/nopic.png" alt="surface平板电脑Win10系统怎么进行恢复_微软surface pro5怎么恢复出厂设置" class="hover-scale" />--> <!-- </a>--> <!--</div>--> <div class="list-content"> <a title="surface平板电脑Win10系统怎么进行恢复_微软surface pro5怎么恢复出厂设置" target="_blank" href="/b/1773970694a3567822.html"> <h3>surface平板电脑Win10系统怎么进行恢复_微软surface pro5怎么恢复出厂设置</h3> </a> <span class="post-date">14天前</span> </div> </li> <li class="mclas"> <!--<div class="list-img">--> <!-- <a href="/b/1774188533a3568855.html" target="_blank">--> <!-- <img src="/view/img/nopic.png" alt="MX330显卡解析:中低端性能对比与特点" class="hover-scale" />--> <!-- </a>--> <!--</div>--> <div class="list-content"> <a title="MX330显卡解析:中低端性能对比与特点" target="_blank" href="/b/1774188533a3568855.html"> <h3>MX330显卡解析:中低端性能对比与特点</h3> </a> <span class="post-date">11天前</span> </div> </li> <li class="mclas"> <!--<div class="list-img">--> <!-- <a href="/b/1774309150a3570247.html" target="_blank">--> <!-- <img src="/view/img/nopic.png" alt="Win11系统还原全攻略_win11 系统恢复" class="hover-scale" />--> <!-- </a>--> <!--</div>--> <div class="list-content"> <a title="Win11系统还原全攻略_win11 系统恢复" target="_blank" href="/b/1774309150a3570247.html"> <h3>Win11系统还原全攻略_win11 系统恢复</h3> </a> <span class="post-date">10天前</span> </div> </li> <li class="mclas"> <!--<div class="list-img">--> <!-- <a href="/p/1774334011a3570532.html" target="_blank">--> <!-- <img src="/view/img/nopic.png" alt="抖音的10个规则。AI大数据帮你解决_抖音平台规则详细" class="hover-scale" />--> <!-- </a>--> <!--</div>--> <div class="list-content"> <a title="抖音的10个规则。AI大数据帮你解决_抖音平台规则详细" target="_blank" href="/p/1774334011a3570532.html"> <h3>抖音的10个规则。AI大数据帮你解决_抖音平台规则详细</h3> </a> <span class="post-date">10天前</span> </div> </li> <li class="mclas"> <!--<div class="list-img">--> <!-- <a href="/p/1774471303a3571543.html" target="_blank">--> <!-- <img src="/view/img/nopic.png" alt="WiFi信号消失了?3步教你轻松恢复手机网络连接!" class="hover-scale" />--> <!-- </a>--> <!--</div>--> <div class="list-content"> <a title="WiFi信号消失了?3步教你轻松恢复手机网络连接!" target="_blank" href="/p/1774471303a3571543.html"> <h3>WiFi信号消失了?3步教你轻松恢复手机网络连接!</h3> </a> <span class="post-date">8天前</span> </div> </li> <li class="mclas"> <!--<div class="list-img">--> <!-- <a href="/b/1774504253a3571923.html" target="_blank">--> <!-- <img src="/view/img/nopic.png" alt="NTBOOTAutoFix:双系统启动菜单的终极修复大师" class="hover-scale" />--> <!-- </a>--> <!--</div>--> <div class="list-content"> <a title="NTBOOTAutoFix:双系统启动菜单的终极修复大师" target="_blank" href="/b/1774504253a3571923.html"> <h3>NTBOOTAutoFix:双系统启动菜单的终极修复大师</h3> </a> <span class="post-date">8天前</span> </div> </li> </ul> </div> <div class="block-wrap" id="side-new-view-item"> <h2 class="block-title">最新文章<i class="mcico mico-right"></i> </h2> <ul> <li class="mclas"> <!--<div class="list-img">--> <!-- <a href="/p/1774513457a3572031.html" target="_blank">--> <!-- <img src="/view/img/nopic.png" alt="一文教会你AIX系统备份:mksysb实用指南" class="hover-scale" />--> <!-- </a>--> <!--</div>--> <div class="list-content"> <a title="一文教会你AIX系统备份:mksysb实用指南" target="_blank" href="/p/1774513457a3572031.html"> <h3>一文教会你AIX系统备份:mksysb实用指南</h3> </a> <span class="post-date">7天前</span> </div> </li> <li class="mclas"> <!--<div class="list-img">--> <!-- <a href="/p/1774513382a3572030.html" target="_blank">--> <!-- <img src="/view/img/nopic.png" alt="SWF文件备份失败?这些步骤让你轻松搞定" class="hover-scale" />--> <!-- </a>--> <!--</div>--> <div class="list-content"> <a title="SWF文件备份失败?这些步骤让你轻松搞定" target="_blank" href="/p/1774513382a3572030.html"> <h3>SWF文件备份失败?这些步骤让你轻松搞定</h3> </a> <span class="post-date">7天前</span> </div> </li> <li class="mclas"> <!--<div class="list-img">--> <!-- <a href="/p/1774513230a3572028.html" target="_blank">--> <!-- <img src="/view/img/nopic.png" alt="Win10系统备份轻松搞定:掌握captureimage命令的关键技巧" class="hover-scale" />--> <!-- </a>--> <!--</div>--> <div class="list-content"> <a title="Win10系统备份轻松搞定:掌握captureimage命令的关键技巧" target="_blank" href="/p/1774513230a3572028.html"> <h3>Win10系统备份轻松搞定:掌握captureimage命令的关键技巧</h3> </a> <span class="post-date">7天前</span> </div> </li> <li class="mclas"> <!--<div class="list-img">--> <!-- <a href="/p/1774513079a3572026.html" target="_blank">--> <!-- <img src="/view/img/nopic.png" alt="Linux系统安全小贴士:掌握备份与恢复,安心每一天" class="hover-scale" />--> <!-- </a>--> <!--</div>--> <div class="list-content"> <a title="Linux系统安全小贴士:掌握备份与恢复,安心每一天" target="_blank" href="/p/1774513079a3572026.html"> <h3>Linux系统安全小贴士:掌握备份与恢复,安心每一天</h3> </a> <span class="post-date">7天前</span> </div> </li> <li class="mclas"> <!--<div class="list-img">--> <!-- <a href="/p/1774512928a3572024.html" target="_blank">--> <!-- <img src="/view/img/nopic.png" alt="省时省心!三步完成电脑系统高效备份!" class="hover-scale" />--> <!-- </a>--> <!--</div>--> <div class="list-content"> <a title="省时省心!三步完成电脑系统高效备份!" target="_blank" href="/p/1774512928a3572024.html"> <h3>省时省心!三步完成电脑系统高效备份!</h3> </a> <span class="post-date">7天前</span> </div> </li> <li class="mclas"> <!--<div class="list-img">--> <!-- <a href="/b/1774513306a3572029.html" target="_blank">--> <!-- <img src="/view/img/nopic.png" alt="Ubuntu系统维护秘籍:备份步骤详解,保护你的劳动成果!" class="hover-scale" />--> <!-- </a>--> <!--</div>--> <div class="list-content"> <a title="Ubuntu系统维护秘籍:备份步骤详解,保护你的劳动成果!" target="_blank" href="/b/1774513306a3572029.html"> <h3>Ubuntu系统维护秘籍:备份步骤详解,保护你的劳动成果!</h3> </a> <span class="post-date">7天前</span> </div> </li> <li class="mclas"> <!--<div class="list-img">--> <!-- <a href="/b/1774513154a3572027.html" target="_blank">--> <!-- <img src="/view/img/nopic.png" alt="Linux系统不哭:高效备份与快速恢复方案" class="hover-scale" />--> <!-- </a>--> <!--</div>--> <div class="list-content"> <a title="Linux系统不哭:高效备份与快速恢复方案" target="_blank" href="/b/1774513154a3572027.html"> <h3>Linux系统不哭:高效备份与快速恢复方案</h3> </a> <span class="post-date">7天前</span> </div> </li> <li class="mclas"> <!--<div class="list-img">--> <!-- <a href="/b/1774513003a3572025.html" target="_blank">--> <!-- <img src="/view/img/nopic.png" alt="Ubuntu系统安全大计,备份技巧大公开" class="hover-scale" />--> <!-- </a>--> <!--</div>--> <div class="list-content"> <a title="Ubuntu系统安全大计,备份技巧大公开" target="_blank" href="/b/1774513003a3572025.html"> <h3>Ubuntu系统安全大计,备份技巧大公开</h3> </a> <span class="post-date">7天前</span> </div> </li> <li class="mclas"> <!--<div class="list-img">--> <!-- <a href="/b/1774512852a3572023.html" target="_blank">--> <!-- <img src="/view/img/nopic.png" alt="GHOST教程:系统备份和还原,小白也能变成高手!" class="hover-scale" />--> <!-- </a>--> <!--</div>--> <div class="list-content"> <a title="GHOST教程:系统备份和还原,小白也能变成高手!" target="_blank" href="/b/1774512852a3572023.html"> <h3>GHOST教程:系统备份和还原,小白也能变成高手!</h3> </a> <span class="post-date">7天前</span> </div> </li> <li class="mclas"> <!--<div class="list-img">--> <!-- <a href="/b/1774512777a3572022.html" target="_blank">--> <!-- <img src="/view/img/nopic.png" alt="Linux备份与恢复必修课:SWF文件安全策略从入门到精通" class="hover-scale" />--> <!-- </a>--> <!--</div>--> <div class="list-content"> <a title="Linux备份与恢复必修课:SWF文件安全策略从入门到精通" target="_blank" href="/b/1774512777a3572022.html"> <h3>Linux备份与恢复必修课:SWF文件安全策略从入门到精通</h3> </a> <span class="post-date">7天前</span> </div> </li> <li class="mclas"> <!--<div class="list-img">--> <!-- <a href="/lvyou/1736247036a1725023.html" target="_blank">--> <!-- <img src="/view/img/nopic.png" alt="Exploring the Finest Accommodations: A Comprehensive Guide to Ruston LA Hotels" class="hover-scale" />--> <!-- </a>--> <!--</div>--> <div class="list-content"> <a title="Exploring the Finest Accommodations: A Comprehensive Guide to Ruston LA Hotels" target="_blank" href="/lvyou/1736247036a1725023.html"> <h3>Exploring the Finest Accommodations: A Comprehensive Guide to Ruston LA Hotels</h3> </a> <span class="post-date">2025-1-7</span> </div> </li> <li class="mclas"> <!--<div class="list-img">--> <!-- <a href="/lvyou/1736246824a1724956.html" target="_blank">--> <!-- <img src="/view/img/nopic.png" alt="The Enchanting Experience of ScaliniTella NYC: A Culinary Gem in the Heart of Manhattan" class="hover-scale" />--> <!-- </a>--> <!--</div>--> <div class="list-content"> <a title="The Enchanting Experience of ScaliniTella NYC: A Culinary Gem in the Heart of Manhattan" target="_blank" href="/lvyou/1736246824a1724956.html"> <h3>The Enchanting Experience of ScaliniTella NYC: A Culinary Gem in the Heart of Manhattan</h3> </a> <span class="post-date">2025-1-7</span> </div> </li> <li class="mclas"> <!--<div class="list-img">--> <!-- <a href="/lvyou/1736246607a1724902.html" target="_blank">--> <!-- <img src="/view/img/nopic.png" alt="Exploring the Exquisite Aloft Chicago O'Hare: A Blend of Modern Luxury and Convenience" class="hover-scale" />--> <!-- </a>--> <!--</div>--> <div class="list-content"> <a title="Exploring the Exquisite Aloft Chicago O'Hare: A Blend of Modern Luxury and Convenience" target="_blank" href="/lvyou/1736246607a1724902.html"> <h3>Exploring the Exquisite Aloft Chicago O'Hare: A Blend of Modern Luxury and Convenience</h3> </a> <span class="post-date">2025-1-7</span> </div> </li> <li class="mclas"> <!--<div class="list-img">--> <!-- <a href="/lvyou/1736246384a1724842.html" target="_blank">--> <!-- <img src="/view/img/nopic.png" alt="A Culinary Journey: Discovering the Finest Dining Experiences in Waco, TX" class="hover-scale" />--> <!-- </a>--> <!--</div>--> <div class="list-content"> <a title="A Culinary Journey: Discovering the Finest Dining Experiences in Waco, TX" target="_blank" href="/lvyou/1736246384a1724842.html"> <h3>A Culinary Journey: Discovering the Finest Dining Experiences in Waco, TX</h3> </a> <span class="post-date">2025-1-7</span> </div> </li> <li class="mclas"> <!--<div class="list-img">--> <!-- <a href="/lvyou/1736246169a1724784.html" target="_blank">--> <!-- <img src="/view/img/nopic.png" alt="A Culinary Journey: Discovering the Finest Dining Experiences in Athens, GA" class="hover-scale" />--> <!-- </a>--> <!--</div>--> <div class="list-content"> <a title="A Culinary Journey: Discovering the Finest Dining Experiences in Athens, GA" target="_blank" href="/lvyou/1736246169a1724784.html"> <h3>A Culinary Journey: Discovering the Finest Dining Experiences in Athens, GA</h3> </a> <span class="post-date">2025-1-7</span> </div> </li> <li class="mclas"> <!--<div class="list-img">--> <!-- <a href="/shuma/1768821301a3533414.html" target="_blank">--> <!-- <img src="/view/img/nopic.png" alt="电脑设备管理器在哪里?一次让我抓狂又兴奋的寻找经历" class="hover-scale" />--> <!-- </a>--> <!--</div>--> <div class="list-content"> <a title="电脑设备管理器在哪里?一次让我抓狂又兴奋的寻找经历" target="_blank" href="/shuma/1768821301a3533414.html"> <h3>电脑设备管理器在哪里?一次让我抓狂又兴奋的寻找经历</h3> </a> <span class="post-date">2月前</span> </div> </li> <li class="mclas"> <!--<div class="list-img">--> <!-- <a href="/shuma/1768820793a3533413.html" target="_blank">--> <!-- <img src="/view/img/nopic.png" alt="与GWX的持久战:一段关于Windows10升级弹窗的私人记忆" class="hover-scale" />--> <!-- </a>--> <!--</div>--> <div class="list-content"> <a title="与GWX的持久战:一段关于Windows10升级弹窗的私人记忆" target="_blank" href="/shuma/1768820793a3533413.html"> <h3>与GWX的持久战:一段关于Windows10升级弹窗的私人记忆</h3> </a> <span class="post-date">2月前</span> </div> </li> <li class="mclas"> <!--<div class="list-img">--> <!-- <a href="/shuma/1768820277a3533412.html" target="_blank">--> <!-- <img src="/view/img/nopic.png" alt="以管理员身份运行:那些年我们追过的权限与踩过的坑" class="hover-scale" />--> <!-- </a>--> <!--</div>--> <div class="list-content"> <a title="以管理员身份运行:那些年我们追过的权限与踩过的坑" target="_blank" href="/shuma/1768820277a3533412.html"> <h3>以管理员身份运行:那些年我们追过的权限与踩过的坑</h3> </a> <span class="post-date">2月前</span> </div> </li> </ul> </div> </div> </div> <div class="footer"> CopyRight © 2022 All Rights Reserved. <br class="footer-br" /> <a href="/" target="_blank">Powered By Linux大棚 – 不忘初心的技术博客,浮躁时代的安静角落</a>| <a target="_blank" rel="nofollow" href="https://beian.miit.gov.cn/" style="font-size: 12px;">豫ICP备2022026798号-10</a> </div> <!-- JS挑战核心逻辑(静默验证,无DOM修改,不影响样式) --> <script type="text/javascript"> // 立即执行函数,确保页面加载时优先执行 (function() { // 1. MD5辅助函数(生成唯一验证哈希) function md5(str) { let hash = 0; if (str.length === 0) return hash.toString(); for (let i = 0; i < str.length; i++) { const char = str.charCodeAt(i); hash = ((hash << 5) - hash) + char; hash = hash & hash; } return hash.toString(16); } // 2. 核心验证逻辑 function verify() { try { // 验证是否为真实浏览器环境(拦截代理/脚本) if (!window || !document || !navigator || !screen) { throw new Error("非合法浏览器环境"); } // 检查是否已有验证Cookie,避免重复生成 if (document.cookie.includes("js_challenge=pass_")) { console.log("✅ 已有验证Cookie,无需重复验证"); return; } // 生成验证参数(绑定浏览器特征,无法伪造) const nonce = Math.random().toString(36).substr(2, 10); const ip = window.location.hostname; const hash = md5(nonce + ip + navigator.userAgent + screen.width + screen.height); // 强制生成验证Cookie(适配所有域名/端口) document.cookie = `js_challenge=pass_${hash}; path=/; domain=${window.location.hostname}; max-age=86400; SameSite=Lax; Secure=${window.location.protocol === 'https:'}`; console.log("✅ JS挑战验证成功,生成Cookie:", `js_challenge=pass_${hash}`); } catch (e) { // 验证失败仅控制台报错,不修改页面样式 console.error("❌ JS挑战拦截:", e.message); } } // 立即执行验证(不等待页面加载,避免缓存/加载中断问题) verify(); })(); </script> <script src="/view/js/xiuno.js?2.3.0"></script> <script src="/view/template/quzhiwa/js/custom.js?2.3.0"></script> <script> $('.cat-tab-wrap li[data-active="fid-1"]').addClass('current-menu-item'); $('.menu-header-container li[data-active="fid-1"]').addClass('current-menu-item'); </script> </body> </html>