admin 管理员组

文章数量: 887021


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.freenas.com.cn/free/1702931354h436415.html">http://www.freenas.com.cn/free/1702931354h436415.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="/jishu/1726309772h934185.html" title="【排版】使用Word排版本科生学位论文的一些小技巧(文本 &amp; 素材)">--> <!-- <img class="hover-scale" src="/view/img/nopic.png" alt="【排版】使用Word排版本科生学位论文的一些小技巧(文本 &amp; 素材)">--> <!-- </a>--> <!-- <ul class="post-categories">--> <!-- <li><a href="/jishu" target="_blank">技术总结</a></li>--> <!-- </ul>--> <!--</div>--> <a href="/jishu/1726309772h934185.html" class="post-item-title" title="【排版】使用Word排版本科生学位论文的一些小技巧(文本 &amp; 素材)"> <h3>【排版】使用Word排版本科生学位论文的一些小技巧(文本 &amp; 素材)</h3> <div class="roclinux-cn post-item-cover" style="display:inline-grid"> <ul class="post-categories"> <li> <a href="/jishu" 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">3月前</div> </div> <p class="post-item-summary">[db:摘要]</p> </div> <div class="roclinux-cn post-item"> <!--<div class="roclinux-cn post-item-cover">--> <!-- <a class="post-item-img" href="/jishu/1726360554h944522.html" title="计算机网络安全教程(第三版)课后简答题答案大全[1-5章]">--> <!-- <img class="hover-scale" src="/view/img/nopic.png" alt="计算机网络安全教程(第三版)课后简答题答案大全[1-5章]">--> <!-- </a>--> <!-- <ul class="post-categories">--> <!-- <li><a href="/jishu" target="_blank">技术总结</a></li>--> <!-- </ul>--> <!--</div>--> <a href="/jishu/1726360554h944522.html" class="post-item-title" title="计算机网络安全教程(第三版)课后简答题答案大全[1-5章]"> <h3>计算机网络安全教程(第三版)课后简答题答案大全[1-5章]</h3> <div class="roclinux-cn post-item-cover" style="display:inline-grid"> <ul class="post-categories"> <li> <a href="/jishu" 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">3月前</div> </div> <p class="post-item-summary">[db:摘要]</p> </div> <div class="roclinux-cn post-item"> <!--<div class="roclinux-cn post-item-cover">--> <!-- <a class="post-item-img" href="/jishu/1726405677h954582.html" title="计算机控制面板属性在哪里打开,win7如何打开系统属性面板|win7打开系统属性面板的方法...">--> <!-- <img class="hover-scale" src="/view/img/nopic.png" alt="计算机控制面板属性在哪里打开,win7如何打开系统属性面板|win7打开系统属性面板的方法...">--> <!-- </a>--> <!-- <ul class="post-categories">--> <!-- <li><a href="/jishu" target="_blank">技术总结</a></li>--> <!-- </ul>--> <!--</div>--> <a href="/jishu/1726405677h954582.html" class="post-item-title" title="计算机控制面板属性在哪里打开,win7如何打开系统属性面板|win7打开系统属性面板的方法..."> <h3>计算机控制面板属性在哪里打开,win7如何打开系统属性面板|win7打开系统属性面板的方法...</h3> <div class="roclinux-cn post-item-cover" style="display:inline-grid"> <ul class="post-categories"> <li> <a href="/jishu" 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">3月前</div> </div> <p class="post-item-summary">[db:摘要]</p> </div> <div class="roclinux-cn post-item"> <!--<div class="roclinux-cn post-item-cover">--> <!-- <a class="post-item-img" href="/jishu/1726434945h960038.html" title="Selenium库快速查找网页元素及执行浏览器模拟操作">--> <!-- <img class="hover-scale" src="/view/img/nopic.png" alt="Selenium库快速查找网页元素及执行浏览器模拟操作">--> <!-- </a>--> <!-- <ul class="post-categories">--> <!-- <li><a href="/jishu" target="_blank">技术总结</a></li>--> <!-- </ul>--> <!--</div>--> <a href="/jishu/1726434945h960038.html" class="post-item-title" title="Selenium库快速查找网页元素及执行浏览器模拟操作"> <h3>Selenium库快速查找网页元素及执行浏览器模拟操作</h3> <div class="roclinux-cn post-item-cover" style="display:inline-grid"> <ul class="post-categories"> <li> <a href="/jishu" 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">3月前</div> </div> <p class="post-item-summary">[db:摘要]</p> </div> <div class="roclinux-cn post-item"> <!--<div class="roclinux-cn post-item-cover">--> <!-- <a class="post-item-img" href="/jishu/1726803034h1031296.html" title="http网络及安全防护面试题及答案">--> <!-- <img class="hover-scale" src="/view/img/nopic.png" alt="http网络及安全防护面试题及答案">--> <!-- </a>--> <!-- <ul class="post-categories">--> <!-- <li><a href="/jishu" target="_blank">技术总结</a></li>--> <!-- </ul>--> <!--</div>--> <a href="/jishu/1726803034h1031296.html" class="post-item-title" title="http网络及安全防护面试题及答案"> <h3>http网络及安全防护面试题及答案</h3> <div class="roclinux-cn post-item-cover" style="display:inline-grid"> <ul class="post-categories"> <li> <a href="/jishu" 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">3月前</div> </div> <p class="post-item-summary">1. Http 状态码&#xff0c;Http2 是什么 答案&#xff1a; 200 欢迎回来&#xff0c;主人 &#xff08;正常&#xff1b;请求已完成。&#xff09; 3</p> </div> <div class="roclinux-cn post-item"> <!--<div class="roclinux-cn post-item-cover">--> <!-- <a class="post-item-img" href="/jishu/1726856199h1040377.html" title="a标签href属性链接文件路径,防止文件直接浏览器打开的方法">--> <!-- <img class="hover-scale" src="/view/img/nopic.png" alt="a标签href属性链接文件路径,防止文件直接浏览器打开的方法">--> <!-- </a>--> <!-- <ul class="post-categories">--> <!-- <li><a href="/jishu" target="_blank">技术总结</a></li>--> <!-- </ul>--> <!--</div>--> <a href="/jishu/1726856199h1040377.html" class="post-item-title" title="a标签href属性链接文件路径,防止文件直接浏览器打开的方法"> <h3>a标签href属性链接文件路径,防止文件直接浏览器打开的方法</h3> <div class="roclinux-cn post-item-cover" style="display:inline-grid"> <ul class="post-categories"> <li> <a href="/jishu" 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">3月前</div> </div> <p class="post-item-summary"><a href"<%request.getContextPath()%>path文件.xlsx"download>点此下载<a> 在a标签中直接增加一个download属性</p> </div> <div class="roclinux-cn post-item"> <!--<div class="roclinux-cn post-item-cover">--> <!-- <a class="post-item-img" href="/jishu/1727334480h1103603.html" title="系统属性由于启动计算机时,win7系统开机弹出“系统属性,由于启动计算机时出现了页面文件配置问题”的解决方法...">--> <!-- <img class="hover-scale" src="/view/img/nopic.png" alt="系统属性由于启动计算机时,win7系统开机弹出“系统属性,由于启动计算机时出现了页面文件配置问题”的解决方法...">--> <!-- </a>--> <!-- <ul class="post-categories">--> <!-- <li><a href="/jishu" target="_blank">技术总结</a></li>--> <!-- </ul>--> <!--</div>--> <a href="/jishu/1727334480h1103603.html" class="post-item-title" title="系统属性由于启动计算机时,win7系统开机弹出“系统属性,由于启动计算机时出现了页面文件配置问题”的解决方法..."> <h3>系统属性由于启动计算机时,win7系统开机弹出“系统属性,由于启动计算机时出现了页面文件配置问题”的解决方法...</h3> <div class="roclinux-cn post-item-cover" style="display:inline-grid"> <ul class="post-categories"> <li> <a href="/jishu" 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">2月前</div> </div> <p class="post-item-summary">很多小伙伴都遇到过win7系统开机弹出“系统属性&#xff0c;由于启动计算机时出现了页面文件配置问题”的困惑吧&#xff0c;一些朋友看过网上零散的win7系统开机弹出“系统属性&#xff0c;由于启动计算机时出现</p> </div> <div class="roclinux-cn post-item"> <!--<div class="roclinux-cn post-item-cover">--> <!-- <a class="post-item-img" href="/jishu/1727373024h1110267.html" title="无效的m3u8怎么办_你还在为m3u8文件如何转换而发愁?看了我就有答案了">--> <!-- <img class="hover-scale" src="/view/img/nopic.png" alt="无效的m3u8怎么办_你还在为m3u8文件如何转换而发愁?看了我就有答案了">--> <!-- </a>--> <!-- <ul class="post-categories">--> <!-- <li><a href="/jishu" target="_blank">技术总结</a></li>--> <!-- </ul>--> <!--</div>--> <a href="/jishu/1727373024h1110267.html" class="post-item-title" title="无效的m3u8怎么办_你还在为m3u8文件如何转换而发愁?看了我就有答案了"> <h3>无效的m3u8怎么办_你还在为m3u8文件如何转换而发愁?看了我就有答案了</h3> <div class="roclinux-cn post-item-cover" style="display:inline-grid"> <ul class="post-categories"> <li> <a href="/jishu" 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">2月前</div> </div> <p class="post-item-summary">你肯定遇到过优酷和UC下载下来的视频文件在文件管理器里面找不到&#xff0c;找到了也只是一个几kb的m3u8文件&#xff0c;那么你的视频去哪里了&#xff1f;你还在为如何转换m3u8而发愁&#xff1</p> </div> <div class="roclinux-cn post-item"> <!--<div class="roclinux-cn post-item-cover">--> <!-- <a class="post-item-img" href="/jishu/1727378301h1111185.html" title="操作系统MOOC课后习题答案">--> <!-- <img class="hover-scale" src="/view/img/nopic.png" alt="操作系统MOOC课后习题答案">--> <!-- </a>--> <!-- <ul class="post-categories">--> <!-- <li><a href="/jishu" target="_blank">技术总结</a></li>--> <!-- </ul>--> <!--</div>--> <a href="/jishu/1727378301h1111185.html" class="post-item-title" title="操作系统MOOC课后习题答案"> <h3>操作系统MOOC课后习题答案</h3> <div class="roclinux-cn post-item-cover" style="display:inline-grid"> <ul class="post-categories"> <li> <a href="/jishu" 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">2月前</div> </div> <p class="post-item-summary">第一章 导论 1.1 什么是操作系统随堂测验 1、操作系统的核心目标是&#xff08;&#xff09;。 A、管理硬件 B、运行程序 C、让用户方便使用 D、提高CPU利用率 答案&#xff1a;B 2、从设备到本地</p> </div> <div class="roclinux-cn post-item"> <!--<div class="roclinux-cn post-item-cover">--> <!-- <a class="post-item-img" href="/jishu/1727378525h1111233.html" title="Win10无法保存打印机服务器属性怎么办">--> <!-- <img class="hover-scale" src="/view/img/nopic.png" alt="Win10无法保存打印机服务器属性怎么办">--> <!-- </a>--> <!-- <ul class="post-categories">--> <!-- <li><a href="/jishu" target="_blank">技术总结</a></li>--> <!-- </ul>--> <!--</div>--> <a href="/jishu/1727378525h1111233.html" class="post-item-title" title="Win10无法保存打印机服务器属性怎么办"> <h3>Win10无法保存打印机服务器属性怎么办</h3> <div class="roclinux-cn post-item-cover" style="display:inline-grid"> <ul class="post-categories"> <li> <a href="/jishu" 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">2月前</div> </div> <p class="post-item-summary">有时候我们在使用打印机时会对属性进行设置&#xff0c;而最近有一些小伙伴在设置的时候却发现无法进行保存&#xff0c;从而导致设置失败&#xff0c;那么我们在遇到这种情况应该如何去解决呢&#xff1f;其</p> </div> <div class="roclinux-cn post-item"> <!--<div class="roclinux-cn post-item-cover">--> <!-- <a class="post-item-img" href="/jishu/1727391963h1113578.html" title="操作系统期末考试简答题汇总(全、附带答案)">--> <!-- <img class="hover-scale" src="/view/img/nopic.png" alt="操作系统期末考试简答题汇总(全、附带答案)">--> <!-- </a>--> <!-- <ul class="post-categories">--> <!-- <li><a href="/jishu" target="_blank">技术总结</a></li>--> <!-- </ul>--> <!--</div>--> <a href="/jishu/1727391963h1113578.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="/jishu" 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">2月前</div> </div> <p class="post-item-summary">题目来源于专业老师网课的课后提问,答案也是相对标准,对复习考试用处较大。 1.OS的作用是什么? 1.操作系统作为用户与硬件系统之间的接口。 2.操作系统作为资源的管理者。 3.操作系统实现了对资源的抽象。 2.单道批处理是什么概念,解</p> </div> <div class="roclinux-cn post-item"> <!--<div class="roclinux-cn post-item-cover">--> <!-- <a class="post-item-img" href="/jishu/1727393504h1113853.html" title="数据库系统概论第五版 课后习题答案王珊">--> <!-- <img class="hover-scale" src="/view/img/nopic.png" alt="数据库系统概论第五版 课后习题答案王珊">--> <!-- </a>--> <!-- <ul class="post-categories">--> <!-- <li><a href="/jishu" target="_blank">技术总结</a></li>--> <!-- </ul>--> <!--</div>--> <a href="/jishu/1727393504h1113853.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="/jishu" 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">2月前</div> </div> <p class="post-item-summary">第1章 绪论 1 &#xff0e;试述数据、数据库、数据库系统、数据库管理系统的概念。 答&#xff1a; ( l &#xff09;数据&#xff08; Data ) &#xff1a;描述事物的符号记</p> </div> <div class="roclinux-cn post-item"> <!--<div class="roclinux-cn post-item-cover">--> <!-- <a class="post-item-img" href="/jishu/1727394712h1114070.html" title="计算机操作系统|汤小丹|第四版|习题答案(三)">--> <!-- <img class="hover-scale" src="/view/img/nopic.png" alt="计算机操作系统|汤小丹|第四版|习题答案(三)">--> <!-- </a>--> <!-- <ul class="post-categories">--> <!-- <li><a href="/jishu" target="_blank">技术总结</a></li>--> <!-- </ul>--> <!--</div>--> <a href="/jishu/1727394712h1114070.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="/jishu" 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">2月前</div> </div> <p class="post-item-summary">1.高级调度与低级调度的主要任务是什么&#xff1f;为什么要引入中级调度&#xff1f; 高级调度&#xff08;长程调度、作业调度&#xff09;主要任务是根据某种算法&#xff0c;决定将外存</p> </div> <div class="roclinux-cn post-item"> <!--<div class="roclinux-cn post-item-cover">--> <!-- <a class="post-item-img" href="/jishu/1728143445h1204917.html" title="计算机中桌面图标构成要素,谁能简述windows桌面的基本组成元素及其功能">--> <!-- <img class="hover-scale" src="/view/img/nopic.png" alt="计算机中桌面图标构成要素,谁能简述windows桌面的基本组成元素及其功能">--> <!-- </a>--> <!-- <ul class="post-categories">--> <!-- <li><a href="/jishu" target="_blank">技术总结</a></li>--> <!-- </ul>--> <!--</div>--> <a href="/jishu/1728143445h1204917.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="/jishu" 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">2月前</div> </div> <p class="post-item-summary">任务栏、桌布(背景)、桌面图标(这些是最基础的)。 任务栏包括开始按钮、中英文切换按钮等&#xff0c;显示正在运行的程序。 桌布就是给你看的。 桌面图标方便你工作。 桌面(英文&#xff1a;Desktop)&#x</p> </div> <div class="roclinux-cn post-item"> <!--<div class="roclinux-cn post-item-cover">--> <!-- <a class="post-item-img" href="/jishu/1729014237h1307003.html" title="ChatGPT函数调用初体验:让ChatGPT具备抓取网页文本的能力">--> <!-- <img class="hover-scale" src="/view/img/nopic.png" alt="ChatGPT函数调用初体验:让ChatGPT具备抓取网页文本的能力">--> <!-- </a>--> <!-- <ul class="post-categories">--> <!-- <li><a href="/jishu" target="_blank">技术总结</a></li>--> <!-- </ul>--> <!--</div>--> <a href="/jishu/1729014237h1307003.html" class="post-item-title" title="ChatGPT函数调用初体验:让ChatGPT具备抓取网页文本的能力"> <h3>ChatGPT函数调用初体验:让ChatGPT具备抓取网页文本的能力</h3> <div class="roclinux-cn post-item-cover" style="display:inline-grid"> <ul class="post-categories"> <li> <a href="/jishu" 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">2月前</div> </div> <p class="post-item-summary">OpenAI在6月13号升级了ChatGPT&#xff0c;推出了类似其网页版插件的功能——函数调用&#xff08;Function calling&#xff09;&#xff0c;13号当天我在很多微信公众号</p> </div> <div class="roclinux-cn post-item"> <!--<div class="roclinux-cn post-item-cover">--> <!-- <a class="post-item-img" href="/jishu/1729014898h1307086.html" title="ChatGPT实现HTML网页文本提取">--> <!-- <img class="hover-scale" src="/view/img/nopic.png" alt="ChatGPT实现HTML网页文本提取">--> <!-- </a>--> <!-- <ul class="post-categories">--> <!-- <li><a href="/jishu" target="_blank">技术总结</a></li>--> <!-- </ul>--> <!--</div>--> <a href="/jishu/1729014898h1307086.html" class="post-item-title" title="ChatGPT实现HTML网页文本提取"> <h3>ChatGPT实现HTML网页文本提取</h3> <div class="roclinux-cn post-item-cover" style="display:inline-grid"> <ul class="post-categories"> <li> <a href="/jishu" 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">2月前</div> </div> <p class="post-item-summary">网页自动化工具 既然ChatGPT对于编程语言有非常强大的理解能力&#xff0c;那么它是否可以用来自动化地处理网页呢&#xff1f;答案是肯定的。ChatGPT可以使用机器学习算法来识别网页元素中的文本&#xff</p> </div> <div class="roclinux-cn post-item"> <!--<div class="roclinux-cn post-item-cover">--> <!-- <a class="post-item-img" href="/jishu/1729032383h1309315.html" title="大学英语四新视野 课后习题+答案翻译 Unit1~Unit8">--> <!-- <img class="hover-scale" src="/view/img/nopic.png" alt="大学英语四新视野 课后习题+答案翻译 Unit1~Unit8">--> <!-- </a>--> <!-- <ul class="post-categories">--> <!-- <li><a href="/jishu" target="_blank">技术总结</a></li>--> <!-- </ul>--> <!--</div>--> <a href="/jishu/1729032383h1309315.html" class="post-item-title" title="大学英语四新视野 课后习题+答案翻译 Unit1~Unit8"> <h3>大学英语四新视野 课后习题+答案翻译 Unit1~Unit8</h3> <div class="roclinux-cn post-item-cover" style="display:inline-grid"> <ul class="post-categories"> <li> <a href="/jishu" 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">2月前</div> </div> <p class="post-item-summary">Unit 1  Text A: Words in use 2022年6月16日 20:57 1 As the gender barriers crumbled, the number of women working as lawyer</p> </div> <div class="roclinux-cn post-item"> <!--<div class="roclinux-cn post-item-cover">--> <!-- <a class="post-item-img" href="/jishu/1729174508h1327100.html" title="在线查看html浏览器兼容性,HTML5标签、属性、事件及浏览器兼容性速查表分享">--> <!-- <img class="hover-scale" src="/view/img/nopic.png" alt="在线查看html浏览器兼容性,HTML5标签、属性、事件及浏览器兼容性速查表分享">--> <!-- </a>--> <!-- <ul class="post-categories">--> <!-- <li><a href="/jishu" target="_blank">技术总结</a></li>--> <!-- </ul>--> <!--</div>--> <a href="/jishu/1729174508h1327100.html" class="post-item-title" title="在线查看html浏览器兼容性,HTML5标签、属性、事件及浏览器兼容性速查表分享"> <h3>在线查看html浏览器兼容性,HTML5标签、属性、事件及浏览器兼容性速查表分享</h3> <div class="roclinux-cn post-item-cover" style="display:inline-grid"> <ul class="post-categories"> <li> <a href="/jishu" 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">2月前</div> </div> <p class="post-item-summary">5 可以说是近十年来 Web 标准最巨大的飞跃。和以前的版本不同&#xff0c; 5 并非仅仅用来表示 Web 内容&#xff0c;它的使命是将 Web 带入一个成熟的应用平台&#xff0c;在这个平台上&#</p> </div> <div class="roclinux-cn post-item"> <!--<div class="roclinux-cn post-item-cover">--> <!-- <a class="post-item-img" href="/jishu/1729623314h1331352.html" title="U盘 移动硬盘提示格式化 怎么办 属性为0字节了 文件格式变RAW了">--> <!-- <img class="hover-scale" src="/view/img/nopic.png" alt="U盘 移动硬盘提示格式化 怎么办 属性为0字节了 文件格式变RAW了">--> <!-- </a>--> <!-- <ul class="post-categories">--> <!-- <li><a href="/jishu" target="_blank">技术总结</a></li>--> <!-- </ul>--> <!--</div>--> <a href="/jishu/1729623314h1331352.html" class="post-item-title" title="U盘 移动硬盘提示格式化 怎么办 属性为0字节了 文件格式变RAW了"> <h3>U盘 移动硬盘提示格式化 怎么办 属性为0字节了 文件格式变RAW了</h3> <div class="roclinux-cn post-item-cover" style="display:inline-grid"> <ul class="post-categories"> <li> <a href="/jishu" 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">2月前</div> </div> <p class="post-item-summary">U盘 移动硬盘提示格式化 怎么办 属性为0字节了 文件格式变RAW了 你是否遇到过关于文件,U盘,移动硬盘等属性常出现莫名的扩大缩小问题,本来是4G的U盘,结果显示十多个G,有时 显示为0字节的情况,就算点击右键也还是提示“是否需要</p> </div> <div class="roclinux-cn post-item"> <!--<div class="roclinux-cn post-item-cover">--> <!-- <a class="post-item-img" href="/jishu/1734804163h1670741.html" title="Win7文件夹属性没有位置选项怎么解决">--> <!-- <img class="hover-scale" src="/view/img/nopic.png" alt="Win7文件夹属性没有位置选项怎么解决">--> <!-- </a>--> <!-- <ul class="post-categories">--> <!-- <li><a href="/jishu" target="_blank">技术总结</a></li>--> <!-- </ul>--> <!--</div>--> <a href="/jishu/1734804163h1670741.html" class="post-item-title" title="Win7文件夹属性没有位置选项怎么解决"> <h3>Win7文件夹属性没有位置选项怎么解决</h3> <div class="roclinux-cn post-item-cover" style="display:inline-grid"> <ul class="post-categories"> <li> <a href="/jishu" 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">我们在使用电脑的时候&#xff0c;经常会对文件夹的属性进行设置&#xff0c;但是最近不少用户在使用电脑查看的win7系统文件夹属性的时候&#xff0c;发现位置属性不见了&#xff0c;那么Win7文件夹</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=f5_2BtZyBgYKCBJd8NVry8TFQcer63f149hPOcYuDdIPxwl7LomPLWZppGmjqkiYGfc2tuJVoyOIDbcpMND7hRtg_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="/jishu/1731958974h1514174.html" title="微软官方原版Win7旗舰版系统:纯净、安全、兼容性强" class="photo-item" target="_blank" style="background:#364cc6"> <!--<img src="/view/img/nopic.png" alt="微软官方原版Win7旗舰版系统:纯净、安全、兼容性强" class="photo-item-img hover-scale" />--> <div class="photo-item-inner"> <h3 class="photo-item-title"> 微软官方原版Win7旗舰版系统:纯净、安全、兼容性强 </h3> </div> </a> <a href="/jishu/1732356472h1534574.html" title="unix文件系统被塞满的清理策略" class="photo-item" target="_blank" style="background:#364cc6"> <!--<img src="/uploads/image/0554.jpg" alt="unix文件系统被塞满的清理策略" class="photo-item-img hover-scale" />--> <div class="photo-item-inner"> <h3 class="photo-item-title"> unix文件系统被塞满的清理策略 </h3> </div> </a> <a href="/jishu/1733328606h1576513.html" title="edge不能打开html网页,Win10系统edge浏览器无法打开网页的解决方法" class="photo-item" target="_blank" style="background:#364cc6"> <!--<img src="/view/img/nopic.png" alt="edge不能打开html网页,Win10系统edge浏览器无法打开网页的解决方法" class="photo-item-img hover-scale" />--> <div class="photo-item-inner"> <h3 class="photo-item-title"> edge不能打开html网页,Win10系统edge浏览器无法打开网页的解决方法 </h3> </div> </a> <a href="/jishu/1733411903h1587169.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="/jishu/1733780169h1624121.html" title="hp打印机连不上wifi的解决办法" class="photo-item" target="_blank" style="background:#364cc6"> <!--<img src="/view/img/nopic.png" alt="hp打印机连不上wifi的解决办法" class="photo-item-img hover-scale" />--> <div class="photo-item-inner"> <h3 class="photo-item-title"> hp打印机连不上wifi的解决办法 </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="/jishu/1731975113h1515044.html" target="_blank">--> <!-- <img src="/view/img/nopic.png" alt="Windows以下系统蓝屏cmd一句话命令" class="hover-scale" />--> <!-- </a>--> <!--</div>--> <div class="list-content"> <a title="Windows以下系统蓝屏cmd一句话命令" target="_blank" href="/jishu/1731975113h1515044.html"> <h3>Windows以下系统蓝屏cmd一句话命令</h3> </a> <span class="post-date">1月前</span> </div> </li> <li class="mclas"> <!--<div class="list-img">--> <!-- <a href="/jishu/1731975300h1515055.html" target="_blank">--> <!-- <img src="/view/img/nopic.png" alt="Windows中的SysWow64文件夹" class="hover-scale" />--> <!-- </a>--> <!--</div>--> <div class="list-content"> <a title="Windows中的SysWow64文件夹" target="_blank" href="/jishu/1731975300h1515055.html"> <h3>Windows中的SysWow64文件夹</h3> </a> <span class="post-date">1月前</span> </div> </li> <li class="mclas"> <!--<div class="list-img">--> <!-- <a href="/jishu/1732351563h1533218.html" target="_blank">--> <!-- <img src="/uploads/image/0886.jpg" alt="上海量子计算机研究,上海交大金贤敏:实现量子霸权是计算机史上里程碑事件..." class="hover-scale" />--> <!-- </a>--> <!--</div>--> <div class="list-content"> <a title="上海量子计算机研究,上海交大金贤敏:实现量子霸权是计算机史上里程碑事件..." target="_blank" href="/jishu/1732351563h1533218.html"> <h3>上海量子计算机研究,上海交大金贤敏:实现量子霸权是计算机史上里程碑事件...</h3> </a> <span class="post-date">29天前</span> </div> </li> <li class="mclas"> <!--<div class="list-img">--> <!-- <a href="/jishu/1732352801h1533567.html" target="_blank">--> <!-- <img src="/uploads/image/0382.jpg" alt="No route info of this topic, RMQ" class="hover-scale" />--> <!-- </a>--> <!--</div>--> <div class="list-content"> <a title="No route info of this topic, RMQ" target="_blank" href="/jishu/1732352801h1533567.html"> <h3>No route info of this topic, RMQ</h3> </a> <span class="post-date">29天前</span> </div> </li> <li class="mclas"> <!--<div class="list-img">--> <!-- <a href="/jishu/1732354102h1533939.html" target="_blank">--> <!-- <img src="/uploads/image/0078.jpg" alt="[Unity3D]Unity3D游戏开发之《愤慨的小鸟》弹弓实现" class="hover-scale" />--> <!-- </a>--> <!--</div>--> <div class="list-content"> <a title="[Unity3D]Unity3D游戏开发之《愤慨的小鸟》弹弓实现" target="_blank" href="/jishu/1732354102h1533939.html"> <h3>[Unity3D]Unity3D游戏开发之《愤慨的小鸟》弹弓实现</h3> </a> <span class="post-date">29天前</span> </div> </li> <li class="mclas"> <!--<div class="list-img">--> <!-- <a href="/jishu/1732360312h1535029.html" target="_blank">--> <!-- <img src="/uploads/image/0590.jpg" alt="LSTM变种比较" class="hover-scale" />--> <!-- </a>--> <!--</div>--> <div class="list-content"> <a title="LSTM变种比较" target="_blank" href="/jishu/1732360312h1535029.html"> <h3>LSTM变种比较</h3> </a> <span class="post-date">29天前</span> </div> </li> <li class="mclas"> <!--<div class="list-img">--> <!-- <a href="/jishu/1732763227h1554185.html" target="_blank">--> <!-- <img src="/view/img/nopic.png" alt="Windows7 64+Qt5.9的Android界面开发+JDK、SDK、DND、ANT软件下载安装+Qt软件配置" class="hover-scale" />--> <!-- </a>--> <!--</div>--> <div class="list-content"> <a title="Windows7 64+Qt5.9的Android界面开发+JDK、SDK、DND、ANT软件下载安装+Qt软件配置" target="_blank" href="/jishu/1732763227h1554185.html"> <h3>Windows7 64+Qt5.9的Android界面开发+JDK、SDK、DND、ANT软件下载安装+Qt软件配置</h3> </a> <span class="post-date">24天前</span> </div> </li> <li class="mclas"> <!--<div class="list-img">--> <!-- <a href="/jishu/1733297183h1572642.html" target="_blank">--> <!-- <img src="/view/img/nopic.png" alt="C# 创建Windows Service(Windows服务)程序" class="hover-scale" />--> <!-- </a>--> <!--</div>--> <div class="list-content"> <a title="C# 创建Windows Service(Windows服务)程序" target="_blank" href="/jishu/1733297183h1572642.html"> <h3>C# 创建Windows Service(Windows服务)程序</h3> </a> <span class="post-date">18天前</span> </div> </li> <li class="mclas"> <!--<div class="list-img">--> <!-- <a href="/jishu/1733436434h1590852.html" target="_blank">--> <!-- <img src="/view/img/nopic.png" alt="Windows下搭建Pytorch环境(超详细)" class="hover-scale" />--> <!-- </a>--> <!--</div>--> <div class="list-content"> <a title="Windows下搭建Pytorch环境(超详细)" target="_blank" href="/jishu/1733436434h1590852.html"> <h3>Windows下搭建Pytorch环境(超详细)</h3> </a> <span class="post-date">17天前</span> </div> </li> <li class="mclas"> <!--<div class="list-img">--> <!-- <a href="/jishu/1733450235h1592685.html" target="_blank">--> <!-- <img src="/view/img/nopic.png" alt="python官网下载-Python3.7.0官方版官方版下载" class="hover-scale" />--> <!-- </a>--> <!--</div>--> <div class="list-content"> <a title="python官网下载-Python3.7.0官方版官方版下载" target="_blank" href="/jishu/1733450235h1592685.html"> <h3>python官网下载-Python3.7.0官方版官方版下载</h3> </a> <span class="post-date">17天前</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="/free/1713021540h628456.html" target="_blank">--> <!-- <img src="/view/img/nopic.png" alt="Raid技术" class="hover-scale" />--> <!-- </a>--> <!--</div>--> <div class="list-content"> <a title="Raid技术" target="_blank" href="/free/1713021540h628456.html"> <h3>Raid技术</h3> </a> <span class="post-date">8月前</span> </div> </li> <li class="mclas"> <!--<div class="list-img">--> <!-- <a href="/free/1713021438h628450.html" target="_blank">--> <!-- <img src="/view/img/nopic.png" alt="LSI_阵列卡操作手册" class="hover-scale" />--> <!-- </a>--> <!--</div>--> <div class="list-content"> <a title="LSI_阵列卡操作手册" target="_blank" href="/free/1713021438h628450.html"> <h3>LSI_阵列卡操作手册</h3> </a> <span class="post-date">8月前</span> </div> </li> <li class="mclas"> <!--<div class="list-img">--> <!-- <a href="/free/1713019527h628324.html" target="_blank">--> <!-- <img src="/view/img/nopic.png" alt="破解Centos7_root用户密码" class="hover-scale" />--> <!-- </a>--> <!--</div>--> <div class="list-content"> <a title="破解Centos7_root用户密码" target="_blank" href="/free/1713019527h628324.html"> <h3>破解Centos7_root用户密码</h3> </a> <span class="post-date">8月前</span> </div> </li> <li class="mclas"> <!--<div class="list-img">--> <!-- <a href="/free/1713019479h628321.html" target="_blank">--> <!-- <img src="/view/img/nopic.png" alt="Redhat重置Root用户密码方法" class="hover-scale" />--> <!-- </a>--> <!--</div>--> <div class="list-content"> <a title="Redhat重置Root用户密码方法" target="_blank" href="/free/1713019479h628321.html"> <h3>Redhat重置Root用户密码方法</h3> </a> <span class="post-date">8月前</span> </div> </li> <li class="mclas"> <!--<div class="list-img">--> <!-- <a href="/free/1713019358h628310.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="/free/1713019358h628310.html"> <h3>远程批量修改linux服务器密码的脚本</h3> </a> <span class="post-date">8月前</span> </div> </li> <li class="mclas"> <!--<div class="list-img">--> <!-- <a href="/jishu/1734878078h1676750.html" target="_blank">--> <!-- <img src="/view/img/nopic.png" alt="Windows7 系统安全设置权限技巧" class="hover-scale" />--> <!-- </a>--> <!--</div>--> <div class="list-content"> <a title="Windows7 系统安全设置权限技巧" target="_blank" href="/jishu/1734878078h1676750.html"> <h3>Windows7 系统安全设置权限技巧</h3> </a> <span class="post-date">5小时前</span> </div> </li> <li class="mclas"> <!--<div class="list-img">--> <!-- <a href="/jishu/1734878009h1676740.html" target="_blank">--> <!-- <img src="/view/img/nopic.png" alt="(Windows系统)详细介绍Windows系统 含有英文版" class="hover-scale" />--> <!-- </a>--> <!--</div>--> <div class="list-content"> <a title="(Windows系统)详细介绍Windows系统 含有英文版" target="_blank" href="/jishu/1734878009h1676740.html"> <h3>(Windows系统)详细介绍Windows系统 含有英文版</h3> </a> <span class="post-date">5小时前</span> </div> </li> <li class="mclas"> <!--<div class="list-img">--> <!-- <a href="/jishu/1734876598h1676551.html" target="_blank">--> <!-- <img src="/view/img/nopic.png" alt="最新Windows 11教育版下载:专为教育设计的系统!" class="hover-scale" />--> <!-- </a>--> <!--</div>--> <div class="list-content"> <a title="最新Windows 11教育版下载:专为教育设计的系统!" target="_blank" href="/jishu/1734876598h1676551.html"> <h3>最新Windows 11教育版下载:专为教育设计的系统!</h3> </a> <span class="post-date">5小时前</span> </div> </li> <li class="mclas"> <!--<div class="list-img">--> <!-- <a href="/jishu/1734875736h1676435.html" target="_blank">--> <!-- <img src="/view/img/nopic.png" alt="Win7系统下搭建NFS服务器" class="hover-scale" />--> <!-- </a>--> <!--</div>--> <div class="list-content"> <a title="Win7系统下搭建NFS服务器" target="_blank" href="/jishu/1734875736h1676435.html"> <h3>Win7系统下搭建NFS服务器</h3> </a> <span class="post-date">6小时前</span> </div> </li> <li class="mclas"> <!--<div class="list-img">--> <!-- <a href="/jishu/1734874359h1676252.html" target="_blank">--> <!-- <img src="/view/img/nopic.png" alt="零基础使用UltraISO制作并安装纯净Win10系统指南" class="hover-scale" />--> <!-- </a>--> <!--</div>--> <div class="list-content"> <a title="零基础使用UltraISO制作并安装纯净Win10系统指南" target="_blank" href="/jishu/1734874359h1676252.html"> <h3>零基础使用UltraISO制作并安装纯净Win10系统指南</h3> </a> <span class="post-date">6小时前</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 技术交流 – FreeNAS中文网</a>| <a target="_blank" rel="nofollow" href="https://beian.miit.gov.cn/" style="font-size: 12px;">浙ICP备08016383号-4</a> 友情链接: <a href="https://www.freenas.com.cn/sitemap/1.txt" title="sitemaps">网站地图1</a> <a href="https://www.freenas.com.cn/sitemap/2.txt" title="sitemaps">网站地图2</a> <a href="https://www.freenas.com.cn/sitemap/3.txt" title="sitemaps">网站地图3</a> <a href="https://www.freenas.com.cn/sitemap/4.txt" title="sitemaps">网站地图4</a> <a href="https://www.freenas.com.cn/sitemap/5.txt" title="sitemaps">网站地图5</a> <a href="https://www.freenas.com.cn/sitemap/6.txt" title="sitemaps">网站地图6</a> <a href="https://www.freenas.com.cn/sitemap/7.txt" title="sitemaps">网站地图7</a> <a href="https://www.freenas.com.cn/sitemap/8.txt" title="sitemaps">网站地图8</a> <a href="https://www.freenas.com.cn/sitemap/9.txt" title="sitemaps">网站地图9</a> <a href="https://www.freenas.com.cn/sitemap/10.txt" title="sitemaps">网站地图10</a> <a href="https://www.freenas.com.cn/sitemap/11.txt" title="sitemaps">网站地图11</a> <a href="https://www.freenas.com.cn/sitemap/12.txt" title="sitemaps">网站地图12</a> <a href="https://www.freenas.com.cn/sitemap/13.txt" title="sitemaps">网站地图13</a> <a href="https://www.freenas.com.cn/sitemap/14.txt" title="sitemaps">网站地图14</a> <a href="https://www.freenas.com.cn/sitemap/15.txt" title="sitemaps">网站地图15</a> <a href="https://www.freenas.com.cn/sitemap/16.txt" title="sitemaps">网站地图16</a> <a href="https://www.freenas.com.cn/sitemap/17.txt" title="sitemaps">网站地图17</a> <a href="https://www.freenas.com.cn/sitemap/18.txt" title="sitemaps">网站地图18</a> <a href="https://www.freenas.com.cn/sitemap/19.txt" title="sitemaps">网站地图19</a> <a href="https://www.freenas.com.cn/sitemap/20.txt" title="sitemaps">网站地图20</a> <a href="https://www.freenas.com.cn/sitemap/21.txt" title="sitemaps">网站地图21</a> <a href="https://www.freenas.com.cn/sitemap/22.txt" title="sitemaps">网站地图22</a> <a href="https://www.freenas.com.cn/sitemap/23.txt" title="sitemaps">网站地图23</a> <a href="https://www.freenas.com.cn/sitemap/24.txt" title="sitemaps">网站地图24</a> <a href="https://www.freenas.com.cn/sitemap/25.txt" title="sitemaps">网站地图25</a> <a href="https://www.freenas.com.cn/sitemap/26.txt" title="sitemaps">网站地图26</a> <a href="https://www.freenas.com.cn/sitemap/27.txt" title="sitemaps">网站地图27</a> <a href="https://www.freenas.com.cn/sitemap/28.txt" title="sitemaps">网站地图28</a> <a href="https://www.freenas.com.cn/sitemap/29.txt" title="sitemaps">网站地图28</a> <a href="https://www.freenas.com.cn/sitemap/30.txt" title="sitemaps">网站地图30</a> <a href="https://www.freenas.com.cn/sitemap/31.txt" title="sitemaps">网站地图31</a> <a href="https://www.freenas.com.cn/sitemap/32.txt" title="sitemaps">网站地图32</a> <a href="https://www.freenas.com.cn/sitemap/33.txt" title="sitemaps">网站地图33</a> <a href="https://www.freenas.com.cn/sitemap/34.txt" title="sitemaps">网站地图34</a> <a href="https://www.freenas.com.cn/sitemap/35.txt" title="sitemaps">网站地图35</a> <a href="https://www.freenas.com.cn/sitemap/36.txt" title="sitemaps">网站地图36</a> <a href="https://www.freenas.com.cn/sitemap/37.txt" title="sitemaps">网站地图37</a> <a href="https://www.freenas.com.cn/sitemap/38.txt" title="sitemaps">网站地图38</a> <a href="https://www.freenas.com.cn/sitemap/39.txt" title="sitemaps">网站地图39</a> <a href="https://www.freenas.com.cn/sitemap/40.txt" title="sitemaps">网站地图40</a> <a href="https://www.freenas.com.cn/sitemap/41.txt" title="sitemaps">网站地图41</a> <a href="https://www.freenas.com.cn/sitemap/42.txt" title="sitemaps">网站地图42</a> <a href="https://www.freenas.com.cn/sitemap/43.txt" title="sitemaps">网站地图43</a> <a href="https://www.freenas.com.cn/sitemap/44.txt" title="sitemaps">网站地图44</a> <a href="https://www.freenas.com.cn/sitemap/45.txt" title="sitemaps">网站地图45</a> <a href="https://www.freenas.com.cn/sitemap/46.txt" title="sitemaps">网站地图46</a> </div> <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>