admin 管理员组

文章数量: 1086019


2024年3月26日发(作者:datetimepicker空)

第一章习题

1.HTML指的是( A )。

A超文本标记语言(Hyper Text Markup Language)

B家庭工具标记语言(Home Tool Markup Language)

C超链接和文本标记语言(Hyperlinks and Text Markup Language)

2.web标准的制定者是( B )。

A 微软 B万维网联盟(W3C) C网景公司(Netscape)

3.用HTML标记语言编写一个简单的网页,网页最基本的结构是( D )。

A … …

B

C

D … …

4.从IE浏览器菜单中选择____查看源文件______命令,可以在打开的记事本中查看到网

页的源代码。

5.实现网页交互性的核心技术是_______ JavaScript _______________。

6.CSS的全称是________ Cascading Style Sheet __________ ______。

7.写出你了解的专业网页编辑制作工具_____Dreamweaver_,_ EditPlus ___________。

8.URL的全称是____Uniform Resource Locator _____________________________。

9.写出URL包含的三个部分内容的作用。

URL通常包括三个部分,第一部分是Scheme,告诉浏览器该如何工作,第二部分是

文件所在的主机,第三部分是文件的路径和文件名。

第二章习题

1. 以下标记符中,用于设置页面标题的是( A )。

A B <caption> C <head> D <html> </p><p style="text-indent: 2em;font-size:18px;">2. 以下标记符中,没有对应的结束标记的是( B )。 </p><p style="text-indent: 2em;font-size:18px;"> A <body> B </p><p style="text-indent: 2em;font-size:18px;"> C <html> D <title> </p><p style="text-indent: 2em;font-size:18px;">3. 文件头标记也就是通常所见到的____<head>…</head>_____标记。 </p><p style="text-indent: 2em;font-size:18px;">4. 创建一个HTML文档的开始标记符是___<html>______,结束标记符是</p><p style="text-indent: 2em;font-size:18px;">____</html>_____。 </p><p style="text-indent: 2em;font-size:18px;">5. 标记是HTML中的主要语法,分____单_____标记和____双_____标记两种。大多</p><p style="text-indent: 2em;font-size:18px;">数标记是____成对_____出现的,由____开始_____标记和_____结束____标记组成。 </p><p style="text-indent: 2em;font-size:18px;">6. 把HTML文档分为__头部_______和______主体___两部分。___主体______部分就</p><p style="text-indent: 2em;font-size:18px;">是在Web浏览器窗口的用户区内看到的内容,而__头部_______部分用来设置该文</p><p style="text-indent: 2em;font-size:18px;">档的标题(出现在Web 浏览器窗口的标题栏中)和文档的一些属性。 </p><p style="text-indent: 2em;font-size:18px;">7. HTML4或XHTML1.0的三种文档风格是__严格型、过渡型____、框架型_____。 </p><p style="text-indent: 2em;font-size:18px;">8. 简述一个HTML文档的基本结构。 </p><p style="text-indent: 2em;font-size:18px;">一个完整的HTML文件包含头部和主体两个部分的内容,在头部内容里,可定</p><p style="text-indent: 2em;font-size:18px;">义标题、样式等,文档的主体内容就是要显示的信息。<html>标记通常会作为HTML</p><p style="text-indent: 2em;font-size:18px;">文档的开始代码,出现在文档的第一句,而</html>标记通常作为HTML文档的结束</p><p style="text-indent: 2em;font-size:18px;">代码,出现在文档的尾部,其他的所有的HTML代码都位于这两个标记之间,该标</p><p style="text-indent: 2em;font-size:18px;">记用于告知浏览器或其他程序,这是一个Web文档,应该按照HTML语言规则对</p><p style="text-indent: 2em;font-size:18px;">文档内容的标记进行解释;<head>…</head>是HTML文档的头部标记;<body>… </p><p style="text-indent: 2em;font-size:18px;"></body>标记之间的文本是在浏览器中要显示的页面内容。 </p><p style="text-indent: 2em;font-size:18px;">第三章习题 </p><p style="text-indent: 2em;font-size:18px;">1. 下面哪一项是换行符标记?( C ) </p><p style="text-indent: 2em;font-size:18px;"> A.<body> B.<font> C.</p><p style="text-indent: 2em;font-size:18px;"> D.<p> </p><p style="text-indent: 2em;font-size:18px;">2. 在HTML中,标记<font>的Size属性最大取值可以是( C )。 </p><p style="text-indent: 2em;font-size:18px;">A. 5 B.6 C.7 D.8 </p><p style="text-indent: 2em;font-size:18px;">3. 在HTML中,标记<pre>的作用是( B )。 </p><p style="text-indent: 2em;font-size:18px;">A. 标题标记B.预排版标记C.转行标记D.文字效果标记 </p><p style="text-indent: 2em;font-size:18px;">4. 下面的( B )特殊符号表示的是空格。 </p><p style="text-indent: 2em;font-size:18px;">A." B.  C.& D.© </p><p style="text-indent: 2em;font-size:18px;">5. 要设置一条1像素粗的水平线,应使用的HTML语句是_ <hr size=1>_ 。 </p><p style="text-indent: 2em;font-size:18px;">6. 在HTML文件中,版权符号的代码是 __©___。 </p><p style="text-indent: 2em;font-size:18px;">7. 使页面的文字居中的方法有 <center>…</center>__。 </p><p style="text-indent: 2em;font-size:18px;">8. 标题字的标记是 <h>____。 </p><p style="text-indent: 2em;font-size:18px;">第四章习题 </p><p style="text-indent: 2em;font-size:18px;">1. 列表(List),顾名思义就是 在网页中将相关资料以条目的形式有序或者无序排</p><p style="text-indent: 2em;font-size:18px;">列而形成的表。 </p><p style="text-indent: 2em;font-size:18px;">2. 常用的列表有 无序列表 、 有序列表 和 定义列表 </p><p style="text-indent: 2em;font-size:18px;"> 三种。 </p><p style="text-indent: 2em;font-size:18px;">3. 无序列表标记<ul>的type属性可以指定出现在列表项前的项目符号的样式,其取值可</p><p style="text-indent: 2em;font-size:18px;">以是: disc 、 circle 和 square 三种。 </p><p style="text-indent: 2em;font-size:18px;">4. 有序列表标记<ol>的type属性可以指定出现在列表项前的项目编号的样式,其取值可</p><p style="text-indent: 2em;font-size:18px;">以是: 1 、 a 、 A 、 i 和 I </p><p style="text-indent: 2em;font-size:18px;"> 五种。 </p><p style="text-indent: 2em;font-size:18px;">5. 使用有序列表标记的 START 属性后,用户则可改变编号的起始值。该属性值</p><p style="text-indent: 2em;font-size:18px;">是一个 整数 ,表示从哪一个数字或字母开始编号。 </p><p style="text-indent: 2em;font-size:18px;">6. 使用列表项标记<li></li>的type属性,用户可以指定单个列表项的符号 (对于无序列</p><p style="text-indent: 2em;font-size:18px;">表而言)或编号(对于有序列表而言) 。 </p><p style="text-indent: 2em;font-size:18px;">7. 使用列表项标记<li></li>的 VALUE 属性,可以改变当前列表项的编号大小,并</p><p style="text-indent: 2em;font-size:18px;">会影响其后所有列表项的编号大小。但该属性只适用于 有序列表 中。 </p><p style="text-indent: 2em;font-size:18px;">第五章习题 </p><p style="text-indent: 2em;font-size:18px;">1. 下列哪一项是在新窗口中打开网页文档( B )。 </p><p style="text-indent: 2em;font-size:18px;"> A._self B._blank C._top D._parent </p><p style="text-indent: 2em;font-size:18px;">2. 在网页中,必须使用( A )标记来完成超级链接。 </p><p style="text-indent: 2em;font-size:18px;"> A.<a>…</a> B.<p>…</p> C.<link>…</link> D.<li>…</li> </p><p style="text-indent: 2em;font-size:18px;">3. 超链接是建立网站、网页主要元素之一。若要建立在同一网页内的链接,应采用以下</p><p style="text-indent: 2em;font-size:18px;">( B )链接形式。 </p><p style="text-indent: 2em;font-size:18px;">A.链接到一个E-mail B.书签式链接 </p><p style="text-indent: 2em;font-size:18px;">C.框架间链接 D.链接到一个网站</p><p style="text-indent: 2em;font-size:18px;"> </p><p style="text-indent: 2em;font-size:18px;">4. 关于超链接,( A )的说法是正确的。 </p><p style="text-indent: 2em;font-size:18px;">A.不同网页上的图片或文本可以链接到同一网页或网站 </p><p style="text-indent: 2em;font-size:18px;">B.不同网页上的图片或文本只能链接到同一网页或网站 </p><p style="text-indent: 2em;font-size:18px;">C.同一网页上被选定的一个图片或一处文本可以同时链接到几个不同网站 </p><p style="text-indent: 2em;font-size:18px;">D.同一网页上图片或文本不能链接到同一书签</p><p style="text-indent: 2em;font-size:18px;"> </p><p style="text-indent: 2em;font-size:18px;">5. </p><p style="text-indent: 2em;font-size:18px;">若要在页面中创建一个图像超链接,要显示的图形为 ,所链接的地址为</p><p style="text-indent: 2em;font-size:18px;">,以下用法中正确的是( B )。</p><p style="text-indent: 2em;font-size:18px;"> </p><p style="text-indent: 2em;font-size:18px;">A</p><p style="text-indent: 2em;font-size:18px;">.</p><p style="text-indent: 2em;font-size:18px;"><a href="></a> </p><p style="text-indent: 2em;font-size:18px;">B</p><p style="text-indent: 2em;font-size:18px;">.</p><p style="text-indent: 2em;font-size:18px;"><a href=""></a> </p><p style="text-indent: 2em;font-size:18px;">C</p><p style="text-indent: 2em;font-size:18px;">.</p><p style="text-indent: 2em;font-size:18px;"><a href =""></a> </p><p style="text-indent: 2em;font-size:18px;">D</p><p style="text-indent: 2em;font-size:18px;">.</p><p style="text-indent: 2em;font-size:18px;"><a href => </p><p style="text-indent: 2em;font-size:18px;">以下创建mail链接的方法,正确的是( C )。 </p><p style="text-indent: 2em;font-size:18px;">A.<ahref="**************">管理员</a> </p><p style="text-indent: 2em;font-size:18px;">B.<ahref="callto:**************">管理员</a> </p><p style="text-indent: 2em;font-size:18px;">C.<ahref="mailto:**************">管理员</a> </p><p style="text-indent: 2em;font-size:18px;">D.<ahref="Email:**************">管理员</a> </p><p style="text-indent: 2em;font-size:18px;">下面是相对路径的是( C )。 </p><p style="text-indent: 2em;font-size:18px;">A. B. ftp://219.153.40.150 </p><p style="text-indent: 2em;font-size:18px;">C.../ D. / </p><p style="text-indent: 2em;font-size:18px;">下面哪组属性是用于设置图像映射的区域坐标的( D )。 </p><p style="text-indent: 2em;font-size:18px;">A.rec B.circle C.poly D. coords </p><p style="text-indent: 2em;font-size:18px;">在HTML文件中,URL是 统一资源定位器 。 </p><p style="text-indent: 2em;font-size:18px;">在HTML文件中,超链接可以分为 内部链接和外部链接 。 </p><p style="text-indent: 2em;font-size:18px;">关于超链接, target 属性用于指定链接的目标窗口。 </p><p style="text-indent: 2em;font-size:18px;">6. </p><p style="text-indent: 2em;font-size:18px;">7. </p><p style="text-indent: 2em;font-size:18px;">8. </p><p style="text-indent: 2em;font-size:18px;">9. </p><p style="text-indent: 2em;font-size:18px;">10. </p><p style="text-indent: 2em;font-size:18px;">11. </p><p style="text-indent: 2em;font-size:18px;">第六章习题</p><p style="text-indent: 2em;font-size:18px;"> </p><p style="text-indent: 2em;font-size:18px;">1. <marquee> ... </marquee>,表示( D ) </p><p style="text-indent: 2em;font-size:18px;">A.页面空白 B.页面属性 C.标题传递 D.滚动文字 </p><p style="text-indent: 2em;font-size:18px;">2. 嵌入背景音乐的HTML代码是( B ) </p><p style="text-indent: 2em;font-size:18px;">A.<backsound src=#> B.<bgsound src=#> </p><p style="text-indent: 2em;font-size:18px;">C.<bgsound url=#> D.<backsound url=#> </p><p style="text-indent: 2em;font-size:18px;">3. 通过哪个属性可以为图片添加边框线. ( C ) </p><p style="text-indent: 2em;font-size:18px;">A. html </p><p style="text-indent: 2em;font-size:18px;">4. 网页中常用的图片格式为 GIF 、 JPEG 和 PNG 。 </p><p style="text-indent: 2em;font-size:18px;">5. 在HTML文档中,显示图片所用的标记是 <img> 。 </p><p style="text-indent: 2em;font-size:18px;">6. <marquee> ... </marquee>的width和height属性表示 滚动背景的宽和高 。 </p><p style="text-indent: 2em;font-size:18px;">7. 使用 <bgsound> 标记只能添加声音文件,不能显示和调整播放软件的控制</p><p style="text-indent: 2em;font-size:18px;">面板,而使用 <embed> 标记则可以插入各种各样的多媒体。 </p><p style="text-indent: 2em;font-size:18px;">第七章习题 </p><p style="text-indent: 2em;font-size:18px;">1. 以下选项中,哪个全部都是表格标记( B )</p><p style="text-indent: 2em;font-size:18px;">。</p><p style="text-indent: 2em;font-size:18px;"> </p><p style="text-indent: 2em;font-size:18px;">A.<table><head><tfoot> B.<table><tr><td> </p><p style="text-indent: 2em;font-size:18px;">C.<table><tr><tt> D.<thead><body><tr> </p><p style="text-indent: 2em;font-size:18px;">2. 请选择可以使单元格中的内容进行左对齐的正确HTML标记( A )。 </p><p style="text-indent: 2em;font-size:18px;">A.<td align="left"> B.<td valign="left"> </p><p style="text-indent: 2em;font-size:18px;">C.<td leftalign> D.<tdleft> </p><p style="text-indent: 2em;font-size:18px;">3. 要使表格的边框不显示,应设置border的值是( B )。 </p><p style="text-indent: 2em;font-size:18px;">A.1 B.0 C.2 D.3 </p><p style="text-indent: 2em;font-size:18px;">4. 以下标记中,用于定义一个单元格的是( A )。 </p><p style="text-indent: 2em;font-size:18px;">A.<td>  </td> B.<tr>…</tr> </p><p style="text-indent: 2em;font-size:18px;">C.<table>…</table> D.<caption>…</caption> </p><p style="text-indent: 2em;font-size:18px;">5. 若要使表格的行高为16pt,以下方法中,正确的是( A )。 </p><p style="text-indent: 2em;font-size:18px;">A.<table border=1 height="16">…</table> </p><p style="text-indent: 2em;font-size:18px;">B.<table border=1 height="16pt">…</table> </p><p style="text-indent: 2em;font-size:18px;">C.<table border=1 height="16pt">…</table> </p><p style="text-indent: 2em;font-size:18px;">D.<table border=1 height="16pt">…</table> </p><p style="text-indent: 2em;font-size:18px;">6. 表格的标记是___<table>____,单元格的标记是___<td>____。 </p><p style="text-indent: 2em;font-size:18px;">7. 表格的宽度可以用百分比和___像素_____两种单位来设置。 </p><p style="text-indent: 2em;font-size:18px;">8. 表格分行用到的标记是 _<tr>______。 </p><p style="text-indent: 2em;font-size:18px;">9. 请写出在网页中设定表格边框的厚度的属性__<border>_____;设定表格单元格之间宽</p><p style="text-indent: 2em;font-size:18px;">度属性___cellspacing___________;设定表格内容与单元格间的距离属性</p><p style="text-indent: 2em;font-size:18px;">____cellpadding______。 </p><p style="text-indent: 2em;font-size:18px;">10. 请写出<caption align=bottom>表格标题</caption>功能是 为表格添加标题_______。 </p><p style="text-indent: 2em;font-size:18px;">11. <tr>….</tr>是用来定义 表格的一行 ;<td>…</td>是用来定义 一个单元格 ;</p><p style="text-indent: 2em;font-size:18px;"><th>…</th>是用来定义___表头_______。 </p><p style="text-indent: 2em;font-size:18px;">12. 单元格垂直合并所用的属性是__colspan____;单元格横向合并所用的属性是</p><p style="text-indent: 2em;font-size:18px;">___rowspan____。 </p><p style="text-indent: 2em;font-size:18px;">13. 利用<table></table>标记符的__frame____属性可以控制表格边框的显示样式;利用</p><p style="text-indent: 2em;font-size:18px;"><table></table>标记符的__rules_____属性可以控制表格分隔线的显示样式。 </p><p style="text-indent: 2em;font-size:18px;">第八章习题 </p><p style="text-indent: 2em;font-size:18px;">1. 框架的分割方式有( ABD )。 </p><p style="text-indent: 2em;font-size:18px;">A.上下分割 B.左右分割 C.对角线分割 D.嵌套分割 </p><p style="text-indent: 2em;font-size:18px;">2. 如果要将窗口进行水平的分割,那么要用到( B )属性。 </p><p style="text-indent: 2em;font-size:18px;"> n </p><p style="text-indent: 2em;font-size:18px;">3. 设置窗口高度或宽度的数值一种是采用 像素 设置另一种是采用 百分比 设置。 </p><p style="text-indent: 2em;font-size:18px;">4. 嵌入式的窗口我们一般用 嵌套分割 来实现。 </p><p style="text-indent: 2em;font-size:18px;">5. 在网页中插入浮动框架要用 <iframe></iframe> 标记。 </p><p style="text-indent: 2em;font-size:18px;">第九章习题 </p><p style="text-indent: 2em;font-size:18px;">1. 在HTML中,<form method=post>,method表示( A ) </p><p style="text-indent: 2em;font-size:18px;">A. 提交的方式 </p><p style="text-indent: 2em;font-size:18px;">B. 表单所用的脚本语言 </p><p style="text-indent: 2em;font-size:18px;">C. 提交的URL地址 </p><p style="text-indent: 2em;font-size:18px;">D. 表单的形式 </p><p style="text-indent: 2em;font-size:18px;">2. 增加表单的文本域的HTML代码是( B ) </p><p style="text-indent: 2em;font-size:18px;">A. <input type=submit></input> </p><p style="text-indent: 2em;font-size:18px;">B. <textarea name="textarea"></textarea> </p><p style="text-indent: 2em;font-size:18px;">C. <input type=radio></input> </p><p style="text-indent: 2em;font-size:18px;">D. <input type=checkbox></input> </p><p style="text-indent: 2em;font-size:18px;">3. 以下关于<select>标记说法正确的是( A D E ) </p><p style="text-indent: 2em;font-size:18px;">A. <select>定义的表单元素在一个下拉菜单中显示选项 </p><p style="text-indent: 2em;font-size:18px;">B. rows和cols属性可以定义其大小 </p><p style="text-indent: 2em;font-size:18px;">C. <select>定义的表单元素是一个单选按钮 </p><p style="text-indent: 2em;font-size:18px;">D. <select>定义的表单元素通过改变其multiple属性取值可以实现多选 </p><p style="text-indent: 2em;font-size:18px;">E. 一般情况下,<select>定义的表单元素以一个下拉列表形式出现 </p><p style="text-indent: 2em;font-size:18px;">4. 现要设计一个可以输入电子邮件地址的web页,应该使用的语句是(B ) </p><p style="text-indent: 2em;font-size:18px;">A. <input type=radio> </p><p style="text-indent: 2em;font-size:18px;">B. <input type=text> </p><p style="text-indent: 2em;font-size:18px;">C. <input type=password> </p><p style="text-indent: 2em;font-size:18px;">D. <input type=checkbox> </p><p style="text-indent: 2em;font-size:18px;">5. <form>标记中,_____ action ____属性的作用就是指出该表单所对应的处理程序的位置;</p><p style="text-indent: 2em;font-size:18px;">______ method ___属性用于指定该表单的运行方式。 </p><p style="text-indent: 2em;font-size:18px;">6. method属性的取值可以为_____ get ____和___post______之一,其默认方式是</p><p style="text-indent: 2em;font-size:18px;">__get_______。 </p><p style="text-indent: 2em;font-size:18px;">7. <input>标记中,____name_____属性的值是相应处理程序中的变量名;___type__属性用</p><p style="text-indent: 2em;font-size:18px;">于指出用户输入值的类型。 </p><p style="text-indent: 2em;font-size:18px;">8. <input>标记中,type属性有九种取值,分别是:text,submit,reset,password,checkbox,</p><p style="text-indent: 2em;font-size:18px;">radio,image,hidden,file。 </p><p style="text-indent: 2em;font-size:18px;">9. 当type=text时,<input>标记除了有两个不可默认的属性____name_____和_____type____</p><p style="text-indent: 2em;font-size:18px;">外,还有三个可选的属性:___maxlength______、__size_______和_____value____。 </p><p style="text-indent: 2em;font-size:18px;">10.当type=____image_____时,浏览器会在相应位置产生一个图像按钮,其中,___src______</p><p style="text-indent: 2em;font-size:18px;">属性是必需的,它用于设置图像文件的路径。 </p><p style="text-indent: 2em;font-size:18px;">第十章习题 </p><p style="text-indent: 2em;font-size:18px;">1. CSS文件的扩展名为( C )。 </p><p style="text-indent: 2em;font-size:18px;">1. A. .txt B. .htm C. .css D. .html </p><p style="text-indent: 2em;font-size:18px;">2. 以下的HTML中,哪个是正确引用外部样式表的方法?( B ) </p><p style="text-indent: 2em;font-size:18px;">A. <style src=""> </p><p style="text-indent: 2em;font-size:18px;">B. <link rel="stylesheet" type="text/css" href=""> </p><p style="text-indent: 2em;font-size:18px;">C. <stylesheet></stylesheet> </p><p style="text-indent: 2em;font-size:18px;">3. CSS的继承并不是完全的“克隆”,有些继承是不起作用的,在下面的几个属性中,那些</p><p style="text-indent: 2em;font-size:18px;">继承是不起作用的( A B D )。 </p><p style="text-indent: 2em;font-size:18px;">2. A. border B. margin C. font D. padding </p><p style="text-indent: 2em;font-size:18px;">4. 在网页中最常用的单位是( C )。 </p><p style="text-indent: 2em;font-size:18px;">3. A. in B. cm C. px D. pc </p><p style="text-indent: 2em;font-size:18px;">5. 下列哪个选项的CSS语法是正确的?( C ) </p><p style="text-indent: 2em;font-size:18px;">A. body:color=black B. {body:color=black(body} </p><p style="text-indent: 2em;font-size:18px;">4. C. body {color: black} D. {body;color:black} </p><p style="text-indent: 2em;font-size:18px;">6. 下面那个语句是把段落的字体设置为黑体、18像素、红色字体显示( B ) </p><p style="text-indent: 2em;font-size:18px;">5. A. p{font-family:黑体;font-size:18pc; font-color:red} </p><p style="text-indent: 2em;font-size:18px;">6. B. p{font-family:黑体;font-size:18px; font-color:#ff0000} </p><p style="text-indent: 2em;font-size:18px;">7. C. p{font:黑体 18px #00ff00} </p><p style="text-indent: 2em;font-size:18px;">7. 如何为所有的<h1>元素添加背景颜色?(B) </p><p style="text-indent: 2em;font-size:18px;">A. {background-color:#FFFFFF} </p><p style="text-indent: 2em;font-size:18px;">B. h1 {background-color:#FFFFFF} </p><p style="text-indent: 2em;font-size:18px;">C. all.h1 {background-color:#FFFFFF} </p><p style="text-indent: 2em;font-size:18px;">8. 设置text-decoration属性的删除线的值为( C )。 </p><p style="text-indent: 2em;font-size:18px;">8. A. underline B. overline C. line-through D. blink </p><p style="text-indent: 2em;font-size:18px;">9. 设置字符间距为15px的语句为( A )。 </p><p style="text-indent: 2em;font-size:18px;">9. A. letter-spacing:15px B. line-height:15px </p><p style="text-indent: 2em;font-size:18px;">10. C. letter-height:15px D. line-spacing:15px </p><p style="text-indent: 2em;font-size:18px;">10. 如何显示这样一个边框:顶边框10像素、底边框5像素、左边框20像素、右边框1</p><p style="text-indent: 2em;font-size:18px;">像素(A) </p><p style="text-indent: 2em;font-size:18px;">A. border-width:10px 1px 5px 20px B. border-width:10px 20px 5px 1px </p><p style="text-indent: 2em;font-size:18px;">11. C. border-width:5px 20px 10px 1px D. border-width:10px 5px 20px 1px </p><p style="text-indent: 2em;font-size:18px;">11. 如何产生带有正方形的项目的列表?( B) </p><p style="text-indent: 2em;font-size:18px;">A. list-type: square B. list-style-type: square </p><p style="text-indent: 2em;font-size:18px;">12. C. type: square D. type: 2 </p><p style="text-indent: 2em;font-size:18px;">12. CSS的英文名为_____Cascading Style Sheet_______,译成中文的意思为___层叠样式__。 </p><p style="text-indent: 2em;font-size:18px;">13. CSS里四种不同的定义分别为:_直接定义标记的style属性_、_定义内部样式表__、_____</p><p style="text-indent: 2em;font-size:18px;">嵌入外部样式表_、______链接外部样式表__。 </p><p style="text-indent: 2em;font-size:18px;">14. CSS的选择符类型为_____id___________、______class_____。 </p><p style="text-indent: 2em;font-size:18px;">15. CSS的四种定义颜色的方法分别为:__十六进制数___、______ RGB函数(整数)_、</p><p style="text-indent: 2em;font-size:18px;">____利用RGB函数设置_____、_________ RGB函数(百分比)__颜色名称_。 </p><p style="text-indent: 2em;font-size:18px;">16. 插入背景附件的属性为______background-attachment__________。 </p><p style="text-indent: 2em;font-size:18px;">第十一章习题 </p><p style="text-indent: 2em;font-size:18px;">1. 关于javascript的说法错误的是( B )。 </p><p style="text-indent: 2em;font-size:18px;">A.是一种脚本编写语言 B.是面向结构的 </p><p style="text-indent: 2em;font-size:18px;">C.具有安全性能 D.是基于对象的 </p><p style="text-indent: 2em;font-size:18px;">2. 可以在下列哪个HTML元素中放置javascript代码?( A ) </p><p style="text-indent: 2em;font-size:18px;">A. <script> B. <javascript> </p><p style="text-indent: 2em;font-size:18px;">C. <js> D. <scripting> </p><p style="text-indent: 2em;font-size:18px;">3. 向页面输出“Hello World”的正确javascript语法是 ( A )。 </p><p style="text-indent: 2em;font-size:18px;">A. ("Hello World") B. "Hello World" </p><p style="text-indent: 2em;font-size:18px;">C. ("Hello World") D. ("Hello World") </p><p style="text-indent: 2em;font-size:18px;">4. 引用名为“”的外部脚本的正确语法是( A )。 </p><p style="text-indent: 2em;font-size:18px;">A. <script src=""> B. <script href=""> </p><p style="text-indent: 2em;font-size:18px;">C. <script name=""> </p><p style="text-indent: 2em;font-size:18px;">5. 外部脚本文件中必须包含<script>标签吗?( B ) </p><p style="text-indent: 2em;font-size:18px;">A. 是 B. 否 </p><p style="text-indent: 2em;font-size:18px;">6. 如何在警告框中写入“Hello World”?( C ) </p><p style="text-indent: 2em;font-size:18px;">A. alertBox="Hello World" B. msgBox("Hello World") </p><p style="text-indent: 2em;font-size:18px;">C. alert("Hello World") D. alertBox("Hello World") </p><p style="text-indent: 2em;font-size:18px;">7. 如何声明一个名为myFunction的函数?( B ) </p><p style="text-indent: 2em;font-size:18px;">A. function:myFunction() B. function myFunction() </p><p style="text-indent: 2em;font-size:18px;">C. function=myFunction() </p><p style="text-indent: 2em;font-size:18px;">8. 如何调用名为myFunction的函数?( C ) </p><p style="text-indent: 2em;font-size:18px;">A. call function myFunction B. call myFunction() </p><p style="text-indent: 2em;font-size:18px;">C. myFunction() </p><p style="text-indent: 2em;font-size:18px;">9. 如何编写当i等于5时执行某些语句的条件语句?( A ) </p><p style="text-indent: 2em;font-size:18px;">A. if (i==5) B. if i=5 then C. if i=5 D. if i==5 then </p><p style="text-indent: 2em;font-size:18px;">10. 在JavaScript中,有多少种不同类型的循环?( B ) </p><p style="text-indent: 2em;font-size:18px;">A. 两种。for循环和while循环 </p><p style="text-indent: 2em;font-size:18px;">B. 四种。for循环、while循环、do...while循环以及in循环 </p><p style="text-indent: 2em;font-size:18px;">C. 一种。for循环 </p><p style="text-indent: 2em;font-size:18px;">11. 下面那个for循环是正确的?( B ) </p><p style="text-indent: 2em;font-size:18px;">A. for (i <= 5; i++) B. for (i = 0; i <= 5; i++) </p><p style="text-indent: 2em;font-size:18px;">C. for (i = 0; i <= 5) D. for i = 1 to 5 </p><p style="text-indent: 2em;font-size:18px;">12. 可插入多行注释的JavaScript语法是?( A ) </p><p style="text-indent: 2em;font-size:18px;">A. /*This comment has more than one line*/ </p><p style="text-indent: 2em;font-size:18px;">B. //This comment has more than one line// </p><p style="text-indent: 2em;font-size:18px;">C. <!--This comment has more than one line--> </p><p style="text-indent: 2em;font-size:18px;">13. 定义JavaScript数组的正确方法是?( C ) </p><p style="text-indent: 2em;font-size:18px;">A. var txt = new Array="tim","kim","jim" </p><p style="text-indent: 2em;font-size:18px;">B. var txt = new Array(1:"tim",2:"kim",3:"jim") </p><p style="text-indent: 2em;font-size:18px;">C. var txt = new Array("tim","kim","jim") </p><p style="text-indent: 2em;font-size:18px;">D. var txt = new Array:1=("tim")2=("kim")3=("jim") </p><p style="text-indent: 2em;font-size:18px;">14. 利用下标访问一个数组时,最小下标是从( A )开始的。 </p><p style="text-indent: 2em;font-size:18px;">A.0 B. 1 </p><p style="text-indent: 2em;font-size:18px;">15. 如何把7.25四舍五入为最接近的整数?( C ) </p><p style="text-indent: 2em;font-size:18px;">A. round(7.25) B. rnd(7.25) </p><p style="text-indent: 2em;font-size:18px;">C. (7.25) D. (7.25) </p><p style="text-indent: 2em;font-size:18px;">16. 如何求得2和4中最大的数?( B ) </p><p style="text-indent: 2em;font-size:18px;">A. (2,4) B. (2,4) </p><p style="text-indent: 2em;font-size:18px;">C. ceil(2,4) D. top(2,4) </p><p style="text-indent: 2em;font-size:18px;">17. 在名为“window2”的新窗口中打开一个连接为“”的JavaScript语法</p><p style="text-indent: 2em;font-size:18px;">是( B )。 </p><p style="text-indent: 2em;font-size:18px;">A. ("www. ","window2") </p><p style="text-indent: 2em;font-size:18px;">B. ("www. ","window2") </p><p style="text-indent: 2em;font-size:18px;">C. new("www. ","window2") </p><p style="text-indent: 2em;font-size:18px;">D. ("www. ","window2") </p><p style="text-indent: 2em;font-size:18px;">18. 如何获得客户端浏览器的名称?( B ) </p><p style="text-indent: 2em;font-size:18px;">A. e B. e </p><p style="text-indent: 2em;font-size:18px;">C. </p><p style="text-indent: 2em;font-size:18px;">19. 将一个名为validate()的函数和一个按钮的单击事件关联起来的正确用法是( B ) </p><p style="text-indent: 2em;font-size:18px;">A. <input type="button" value="验证" ondblclick="validate ()"> </p><p style="text-indent: 2em;font-size:18px;">B. <input type="button" value="验证" onclick="validate ()"> </p><p style="text-indent: 2em;font-size:18px;">C. <input type="button" value="验证" onkeydown="validate ()"> </p><p style="text-indent: 2em;font-size:18px;">20. 脚本语言和HTML语言有何联系和区别? </p><p style="text-indent: 2em;font-size:18px;">JavaScript是解释型的编程语言,实现了大部分的面向对象的功能。一般用来做客户端</p><p style="text-indent: 2em;font-size:18px;">脚本(当然,也可以做服务器端脚本),嵌套在HTML页面中,运行在浏览器窗口中,可以</p><p style="text-indent: 2em;font-size:18px;">按面向对象的方式操作html页面的对象(document,window等等),把静态的html页面变成</p><p style="text-indent: 2em;font-size:18px;">支持用于交互并相应事件的动态页面。而html则是超文本标记语言,浏览器会对标记自动</p><p style="text-indent: 2em;font-size:18px;">进行分析解释。 </p><p style="text-indent: 2em;font-size:18px;"> </p></div><br><p><h2></h2></p> <!-- 附件 --> <p class="tag"> 本文标签: <a style="margin-right: 10px" href="/tag/579.html" target="_blank">标记</a> <a style="margin-right: 10px" href="/tag/232.html" target="_blank">属性</a> <a style="margin-right: 10px" href="/tag/331.html" target="_blank">网页</a> <a style="margin-right: 10px" href="/tag/230.html" target="_blank">文档</a> <a style="margin-right: 10px" href="/tag/241.html" target="_blank">显示</a> </p> <div class="roclinux-cn copyright"> <blockquote> <p> 版权声明:本文标题:HTML习题答案汇总 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:<a href="http://www.roclinux.cn/b/1711464327a595512.html">http://www.roclinux.cn/b/1711464327a595512.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/1741132504a2261364.html" title="如何在浏览器中直接打开WordExcel等Office文档?">--> <!-- <img class="hover-scale" src="/view/img/nopic.png" alt="如何在浏览器中直接打开WordExcel等Office文档?">--> <!-- </a>--> <!-- <ul class="post-categories">--> <!-- <li><a href="/b" target="_blank">编程</a></li>--> <!-- </ul>--> <!--</div>--> <a href="/b/1741132504a2261364.html" class="post-item-title" title="如何在浏览器中直接打开WordExcel等Office文档?"> <h3>如何在浏览器中直接打开WordExcel等Office文档?</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">历史背景 随着协调办公的兴起&#xff0c;网页在线编辑文档也越来越广泛&#xff0c;很多大公司也发布了在线Office&#xff0c;但是也存在很多问题。比如桌面版Office就存在一些功能缺失&#xf</p> </div> <div class="roclinux-cn post-item"> <!--<div class="roclinux-cn post-item-cover">--> <!-- <a class="post-item-img" href="/b/1741134995a2261799.html" title="电脑浏览器打不开html文档,电脑浏览器打不开本地html文件">--> <!-- <img class="hover-scale" src="/view/img/nopic.png" alt="电脑浏览器打不开html文档,电脑浏览器打不开本地html文件">--> <!-- </a>--> <!-- <ul class="post-categories">--> <!-- <li><a href="/b" target="_blank">编程</a></li>--> <!-- </ul>--> <!--</div>--> <a href="/b/1741134995a2261799.html" class="post-item-title" title="电脑浏览器打不开html文档,电脑浏览器打不开本地html文件"> <h3>电脑浏览器打不开html文档,电脑浏览器打不开本地html文件</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">3在文件中输入代码 2由于IE主页被劫持&#xff0c;所以出现上诉问题。 1、你的html文件内的源码本身存在问题&#xff0c;并不能正确解析为html页面&#xff0c;尤其是文件头的声明部分&#xff</p> </div> <div class="roclinux-cn post-item"> <!--<div class="roclinux-cn post-item-cover">--> <!-- <a class="post-item-img" href="/b/1741135916a2261957.html" title="python保存CSDN网页到本地二 打开关闭浏览器">--> <!-- <img class="hover-scale" src="/view/img/nopic.png" alt="python保存CSDN网页到本地二 打开关闭浏览器">--> <!-- </a>--> <!-- <ul class="post-categories">--> <!-- <li><a href="/b" target="_blank">编程</a></li>--> <!-- </ul>--> <!--</div>--> <a href="/b/1741135916a2261957.html" class="post-item-title" title="python保存CSDN网页到本地二 打开关闭浏览器"> <h3>python保存CSDN网页到本地二 打开关闭浏览器</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">这个地方需要使用到的就是python的selenium库&#xff0c;这里有一个博客对于安装讲解的很棒&#xff0c;点这里 注意&#xff1a;如果是之前pycharm已经打开的&#xff0c;切记重新打</p> </div> <div class="roclinux-cn post-item"> <!--<div class="roclinux-cn post-item-cover">--> <!-- <a class="post-item-img" href="/b/1741179299a2269783.html" title="复制粘贴到word文档中的表格超出页面该怎么办">--> <!-- <img class="hover-scale" src="/view/img/nopic.png" alt="复制粘贴到word文档中的表格超出页面该怎么办">--> <!-- </a>--> <!-- <ul class="post-categories">--> <!-- <li><a href="/b" target="_blank">编程</a></li>--> <!-- </ul>--> <!--</div>--> <a href="/b/1741179299a2269783.html" class="post-item-title" title="复制粘贴到word文档中的表格超出页面该怎么办"> <h3>复制粘贴到word文档中的表格超出页面该怎么办</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">首先&#xff0c;我们打开一个表格超出页面的word文档&#xff0c;如图所示&#xff1b; 然后我们点击表格左上角的那个按钮&#xff0c;如图所示&#xff0c;这样我们就选中了整个表格</p> </div> <div class="roclinux-cn post-item"> <!--<div class="roclinux-cn post-item-cover">--> <!-- <a class="post-item-img" href="/b/1742211766a2351575.html" title="计算机毕业设计SpringBoot+Vue.js在线远程考试系统(源码+文档+PPT+讲解)">--> <!-- <img class="hover-scale" src="/view/img/nopic.png" alt="计算机毕业设计SpringBoot+Vue.js在线远程考试系统(源码+文档+PPT+讲解)">--> <!-- </a>--> <!-- <ul class="post-categories">--> <!-- <li><a href="/b" target="_blank">编程</a></li>--> <!-- </ul>--> <!--</div>--> <a href="/b/1742211766a2351575.html" class="post-item-title" title="计算机毕业设计SpringBoot+Vue.js在线远程考试系统(源码+文档+PPT+讲解)"> <h3>计算机毕业设计SpringBoot+Vue.js在线远程考试系统(源码+文档+PPT+讲解)</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">温馨提示&#xff1a;文末有 CSDN 平台官方提供的学长联系方式的名片&#xff01; 温馨提示&#xff1a;文末有 CSDN 平台官方提供的学长联系方式的名片&#xff01; 温馨提示&#xf</p> </div> <div class="roclinux-cn post-item"> <!--<div class="roclinux-cn post-item-cover">--> <!-- <a class="post-item-img" href="/b/1742211791a2351579.html" title="计算机毕业设计SpringBoot+Vue.js大学生就业需求分析系统(源码+文档+PPT+讲解)">--> <!-- <img class="hover-scale" src="/view/img/nopic.png" alt="计算机毕业设计SpringBoot+Vue.js大学生就业需求分析系统(源码+文档+PPT+讲解)">--> <!-- </a>--> <!-- <ul class="post-categories">--> <!-- <li><a href="/b" target="_blank">编程</a></li>--> <!-- </ul>--> <!--</div>--> <a href="/b/1742211791a2351579.html" class="post-item-title" title="计算机毕业设计SpringBoot+Vue.js大学生就业需求分析系统(源码+文档+PPT+讲解)"> <h3>计算机毕业设计SpringBoot+Vue.js大学生就业需求分析系统(源码+文档+PPT+讲解)</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">温馨提示&#xff1a;文末有 CSDN 平台官方提供的学长联系方式的名片&#xff01; 温馨提示&#xff1a;文末有 CSDN 平台官方提供的学长联系方式的名片&#xff01; 温馨提示&#xf</p> </div> <div class="roclinux-cn post-item"> <!--<div class="roclinux-cn post-item-cover">--> <!-- <a class="post-item-img" href="/b/1742417126a2389314.html" title="在浏览器中运行Windows11网页版">--> <!-- <img class="hover-scale" src="/view/img/nopic.png" alt="在浏览器中运行Windows11网页版">--> <!-- </a>--> <!-- <ul class="post-categories">--> <!-- <li><a href="/b" target="_blank">编程</a></li>--> <!-- </ul>--> <!--</div>--> <a href="/b/1742417126a2389314.html" class="post-item-title" title="在浏览器中运行Windows11网页版"> <h3>在浏览器中运行Windows11网页版</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">按照微软的预告&#xff0c;Windows 11 正式版会在 2021 年底推出。现在网上已经有了 Windows 11 ISO 预览版本&#xff0c;不过应该还是开发测试版&#xff0c;并不能应用于正式环境。</p> </div> <div class="roclinux-cn post-item"> <!--<div class="roclinux-cn post-item-cover">--> <!-- <a class="post-item-img" href="/b/1742441138a2392740.html" title="文档压缩软件 NXPowerLite v10.3.1 一键激活 永久授权">--> <!-- <img class="hover-scale" src="/view/img/nopic.png" alt="文档压缩软件 NXPowerLite v10.3.1 一键激活 永久授权">--> <!-- </a>--> <!-- <ul class="post-categories">--> <!-- <li><a href="/b" target="_blank">编程</a></li>--> <!-- </ul>--> <!--</div>--> <a href="/b/1742441138a2392740.html" class="post-item-title" title="文档压缩软件 NXPowerLite v10.3.1 一键激活 永久授权"> <h3>文档压缩软件 NXPowerLite v10.3.1 一键激活 永久授权</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">NXPowerLite Desktop Edition 是一款专为办公文档优化设计的强大工具&#xff0c;能够无损压缩 Word、Excel、PPT 以及 PDF 文件。它通过智能压缩图片和文字来缩小文件体积&#xff0c</p> </div> <div class="roclinux-cn post-item"> <!--<div class="roclinux-cn post-item-cover">--> <!-- <a class="post-item-img" href="/b/1742568126a2409673.html" title="pc端vue项目打开pdf文件;网页查看pdf文件;浏览器直接打开pdf文件">--> <!-- <img class="hover-scale" src="/view/img/nopic.png" alt="pc端vue项目打开pdf文件;网页查看pdf文件;浏览器直接打开pdf文件">--> <!-- </a>--> <!-- <ul class="post-categories">--> <!-- <li><a href="/b" target="_blank">编程</a></li>--> <!-- </ul>--> <!--</div>--> <a href="/b/1742568126a2409673.html" class="post-item-title" title="pc端vue项目打开pdf文件;网页查看pdf文件;浏览器直接打开pdf文件"> <h3>pc端vue项目打开pdf文件;网页查看pdf文件;浏览器直接打开pdf文件</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">要求url是可以直接在地址栏打开的pdf地址urlhttps:push-repair.zuihuibaoACHC00DE0421FP00359D.pdf?e1629447429&tokenvuxdWg0Cy8FED</p> </div> <div class="roclinux-cn post-item"> <!--<div class="roclinux-cn post-item-cover">--> <!-- <a class="post-item-img" href="/b/1742570309a2409965.html" title="【求助】python自动向网页填写表单-打开浏览器方法报错">--> <!-- <img class="hover-scale" src="/view/img/nopic.png" alt="【求助】python自动向网页填写表单-打开浏览器方法报错">--> <!-- </a>--> <!-- <ul class="post-categories">--> <!-- <li><a href="/b" target="_blank">编程</a></li>--> <!-- </ul>--> <!--</div>--> <a href="/b/1742570309a2409965.html" class="post-item-title" title="【求助】python自动向网页填写表单-打开浏览器方法报错"> <h3>【求助】python自动向网页填写表单-打开浏览器方法报错</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">在网上找到一段代码&#xff0c;可以打开浏览器&#xff0c;并自动填写表单&#xff0c;提交。 但是运行的时候报错&#xff0c;看了半天&#xff0c;不知道为啥 不知哪位大神可以帮忙看看</p> </div> <div class="roclinux-cn post-item"> <!--<div class="roclinux-cn post-item-cover">--> <!-- <a class="post-item-img" href="/b/1742570995a2410053.html" title="用Selenium操作网页,如何在打开网站的过程中,实现刷新,清除缓存的效果">--> <!-- <img class="hover-scale" src="/view/img/nopic.png" alt="用Selenium操作网页,如何在打开网站的过程中,实现刷新,清除缓存的效果">--> <!-- </a>--> <!-- <ul class="post-categories">--> <!-- <li><a href="/b" target="_blank">编程</a></li>--> <!-- </ul>--> <!--</div>--> <a href="/b/1742570995a2410053.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="/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">在使用 Selenium 操作网页时&#xff0c;可以通过控制浏览器选项来实现刷新和清除缓存的效果。下面是使用 Python 和 Selenium 的示例代码&#xff1a; 刷新网页&#xff1a; from</p> </div> <div class="roclinux-cn post-item"> <!--<div class="roclinux-cn post-item-cover">--> <!-- <a class="post-item-img" href="/b/1742571128a2410071.html" title="手机网页通过js打开app">--> <!-- <img class="hover-scale" src="/view/img/nopic.png" alt="手机网页通过js打开app">--> <!-- </a>--> <!-- <ul class="post-categories">--> <!-- <li><a href="/b" target="_blank">编程</a></li>--> <!-- </ul>--> <!--</div>--> <a href="/b/1742571128a2410071.html" class="post-item-title" title="手机网页通过js打开app"> <h3>手机网页通过js打开app</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">因为公司市场需要&#xff0c;然后花了点时间研究下&#xff0c;本身是做的混合式APP嘛&#xff0c;有兴趣的大佬可以研究下 先说重点&#xff1a; 1. 第三方浏览器通过网页打开app的普遍方法</p> </div> <div class="roclinux-cn post-item"> <!--<div class="roclinux-cn post-item-cover">--> <!-- <a class="post-item-img" href="/b/1742571186a2410078.html" title="jquery 打开新网页">--> <!-- <img class="hover-scale" src="/view/img/nopic.png" alt="jquery 打开新网页">--> <!-- </a>--> <!-- <ul class="post-categories">--> <!-- <li><a href="/b" target="_blank">编程</a></li>--> <!-- </ul>--> <!--</div>--> <a href="/b/1742571186a2410078.html" class="post-item-title" title="jquery 打开新网页"> <h3>jquery 打开新网页</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">$(#_report).attr(src, index.phphomepdfviewviewer?filedata).show();可以替换为以下 1、带参数打开新窗口 $window.open("bdfenceb</p> </div> <div class="roclinux-cn post-item"> <!--<div class="roclinux-cn post-item-cover">--> <!-- <a class="post-item-img" href="/b/1742574785a2410552.html" title="计算机毕业设计SpringBoot+Vue.js项目申报系统(源码+文档+PPT+讲解)">--> <!-- <img class="hover-scale" src="/view/img/nopic.png" alt="计算机毕业设计SpringBoot+Vue.js项目申报系统(源码+文档+PPT+讲解)">--> <!-- </a>--> <!-- <ul class="post-categories">--> <!-- <li><a href="/b" target="_blank">编程</a></li>--> <!-- </ul>--> <!--</div>--> <a href="/b/1742574785a2410552.html" class="post-item-title" title="计算机毕业设计SpringBoot+Vue.js项目申报系统(源码+文档+PPT+讲解)"> <h3>计算机毕业设计SpringBoot+Vue.js项目申报系统(源码+文档+PPT+讲解)</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">温馨提示&#xff1a;文末有 CSDN 平台官方提供的学长联系方式的名片&#xff01; 温馨提示&#xff1a;文末有 CSDN 平台官方提供的学长联系方式的名片&#xff01; 温馨提示&#xf</p> </div> <div class="roclinux-cn post-item"> <!--<div class="roclinux-cn post-item-cover">--> <!-- <a class="post-item-img" href="/b/1742618620a2416352.html" title="wps文档一敲空格就换行_WPS文字输入几个字就自动换行怎么办">--> <!-- <img class="hover-scale" src="/view/img/nopic.png" alt="wps文档一敲空格就换行_WPS文字输入几个字就自动换行怎么办">--> <!-- </a>--> <!-- <ul class="post-categories">--> <!-- <li><a href="/b" target="_blank">编程</a></li>--> <!-- </ul>--> <!--</div>--> <a href="/b/1742618620a2416352.html" class="post-item-title" title="wps文档一敲空格就换行_WPS文字输入几个字就自动换行怎么办"> <h3>wps文档一敲空格就换行_WPS文字输入几个字就自动换行怎么办</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">我们在利用WPS文字或Word文档进行办公的时候&#xff0c;有时候会遇到一个问题&#xff1a;明明没输入几个字&#xff0c;文档就自动跳转到下一行了&#xff0c;这是怎么回事呢&#xff1f</p> </div> <div class="roclinux-cn post-item"> <!--<div class="roclinux-cn post-item-cover">--> <!-- <a class="post-item-img" href="/b/1743605643a2449774.html" title="解决Word文档中页眉有部分有,有部分没有的问题">--> <!-- <img class="hover-scale" src="/view/img/nopic.png" alt="解决Word文档中页眉有部分有,有部分没有的问题">--> <!-- </a>--> <!-- <ul class="post-categories">--> <!-- <li><a href="/b" target="_blank">编程</a></li>--> <!-- </ul>--> <!--</div>--> <a href="/b/1743605643a2449774.html" class="post-item-title" title="解决Word文档中页眉有部分有,有部分没有的问题"> <h3>解决Word文档中页眉有部分有,有部分没有的问题</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">问题描述&#xff1a;一个Word文档中&#xff0c;在页眉上添加文档名称和页码&#xff0c;但是有的有&#xff0c;有的没有&#xff0c;选择“链接到前一节”也无法解决该问题。 原因分析</p> </div> <div class="roclinux-cn post-item"> <!--<div class="roclinux-cn post-item-cover">--> <!-- <a class="post-item-img" href="/b/1743812752a2483918.html" title="h5页面提示只能在微信浏览器中打开_Javascript限制网页只能在微信内置浏览器中访问...">--> <!-- <img class="hover-scale" src="/view/img/nopic.png" alt="h5页面提示只能在微信浏览器中打开_Javascript限制网页只能在微信内置浏览器中访问...">--> <!-- </a>--> <!-- <ul class="post-categories">--> <!-- <li><a href="/b" target="_blank">编程</a></li>--> <!-- </ul>--> <!--</div>--> <a href="/b/1743812752a2483918.html" class="post-item-title" title="h5页面提示只能在微信浏览器中打开_Javascript限制网页只能在微信内置浏览器中访问..."> <h3>h5页面提示只能在微信浏览器中打开_Javascript限制网页只能在微信内置浏览器中访问...</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">27天前</div> </div> <p class="post-item-summary">那么问题就来了&#xff0c;这个网页首先涉及到了移动web前端开发&#xff0c;我优先选择了用HTML5bootstrap组合来实现页面的美观效果&#xff0c;前端其他的任务交给javascript解决(这里我</p> </div> <div class="roclinux-cn post-item"> <!--<div class="roclinux-cn post-item-cover">--> <!-- <a class="post-item-img" href="/b/1743813405a2484029.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/1743813405a2484029.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">27天前</div> </div> <p class="post-item-summary">有一个路饭网友在路饭问答中心提问说&#xff1a;手机能连上网&#xff0c;信号强&#xff0c;但打不开微信的网页。手机打不开微信的网页这个问题小编觉得挺典型的&#xff0c;所以特意拿来谈一谈&</p> </div> <div class="roclinux-cn post-item"> <!--<div class="roclinux-cn post-item-cover">--> <!-- <a class="post-item-img" href="/b/1743862442a2492543.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/1743862442a2492543.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">26天前</div> </div> <p class="post-item-summary">电脑双击文件都是打开属性窗口怎么办 电脑双击文件都是打开属性窗口怎么办?不知道电脑怎么回事&#xff0c;双击文件后显示的都是属性窗口&#xff0c;该怎么办呢?下面小编分享电脑鼠标双击文件都是打开属性窗口的解决办法&</p> </div> <div class="roclinux-cn post-item"> <!--<div class="roclinux-cn post-item-cover">--> <!-- <a class="post-item-img" href="/b/1743912941a2501281.html" title="Mac OS 如何快速新建一个文本文档 txt,像Windows">--> <!-- <img class="hover-scale" src="/view/img/nopic.png" alt="Mac OS 如何快速新建一个文本文档 txt,像Windows">--> <!-- </a>--> <!-- <ul class="post-categories">--> <!-- <li><a href="/b" target="_blank">编程</a></li>--> <!-- </ul>--> <!--</div>--> <a href="/b/1743912941a2501281.html" class="post-item-title" title="Mac OS 如何快速新建一个文本文档 txt,像Windows"> <h3>Mac OS 如何快速新建一个文本文档 txt,像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">26天前</div> </div> <p class="post-item-summary">文章目录 Step1:找到自带的文本编辑Step2:编辑格式Step3:存储,选择文本编码Step4:存放另解: iRightMouseMac OS 上的 右键菜单并没有类似 Windows 系统的“新建文本文档”; 那有需要的时候,如何使</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/595512.html?safe_token=tj3RlJq_2F1tbQo66Yb7STYj0IBl1g7Mga3Ax53iIIQ_2B9YFTQEeQ37l9EFt1WkF7A_2FpKIz342yvkVY7_2FRrCFkb4g_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/1743999922a2516256.html" title="javascript - Ordering a list of elements without losing the event handler - Stack Overflow" class="photo-item" target="_blank" style="background:#364cc6"> <!--<img src="/view/img/nopic.png" alt="javascript - Ordering a list of elements without losing the event handler - Stack Overflow" class="photo-item-img hover-scale" />--> <div class="photo-item-inner"> <h3 class="photo-item-title"> javascript - Ordering a list of elements without losing the event handler - Stack Overflow </h3> </div> </a> <a href="/p/1744003037a2516794.html" title="javascript - Why is .forEach returning undefined? - Stack Overflow" class="photo-item" target="_blank" style="background:#364cc6"> <!--<img src="/view/img/nopic.png" alt="javascript - Why is .forEach returning undefined? - Stack Overflow" class="photo-item-img hover-scale" />--> <div class="photo-item-inner"> <h3 class="photo-item-title"> javascript - Why is .forEach returning undefined? - Stack Overflow </h3> </div> </a> <a href="/p/1744038826a2522874.html" title="java - Highlight and Edit XML in a browser - Stack Overflow" class="photo-item" target="_blank" style="background:#364cc6"> <!--<img src="/view/img/nopic.png" alt="java - Highlight and Edit XML in a browser - Stack Overflow" class="photo-item-img hover-scale" />--> <div class="photo-item-inner"> <h3 class="photo-item-title"> java - Highlight and Edit XML in a browser - Stack Overflow </h3> </div> </a> <a href="/p/1744051418a2525089.html" title="php - Loading screen for Google Maps - Stack Overflow" class="photo-item" target="_blank" style="background:#364cc6"> <!--<img src="/view/img/nopic.png" alt="php - Loading screen for Google Maps - Stack Overflow" class="photo-item-img hover-scale" />--> <div class="photo-item-inner"> <h3 class="photo-item-title"> php - Loading screen for Google Maps - Stack Overflow </h3> </div> </a> <a href="/p/1744086080a2531150.html" title="javascript - How to change and add query strings in the app folder of Next.js? - Stack Overflow" class="photo-item" target="_blank" style="background:#364cc6"> <!--<img src="/view/img/nopic.png" alt="javascript - How to change and add query strings in the app folder of Next.js? - Stack Overflow" class="photo-item-img hover-scale" />--> <div class="photo-item-inner"> <h3 class="photo-item-title"> javascript - How to change and add query strings in the app folder of Next.js? - Stack Overflow </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="/p/1743987723a2514159.html" target="_blank">--> <!-- <img src="/view/img/nopic.png" alt="javascript - Overlay below tiles in Leaflet.js - Stack Overflow" class="hover-scale" />--> <!-- </a>--> <!--</div>--> <div class="list-content"> <a title="javascript - Overlay below tiles in Leaflet.js - Stack Overflow" target="_blank" href="/p/1743987723a2514159.html"> <h3>javascript - Overlay below tiles in Leaflet.js - Stack Overflow</h3> </a> <span class="post-date">25天前</span> </div> </li> <li class="mclas"> <!--<div class="list-img">--> <!-- <a href="/p/1744004319a2517007.html" target="_blank">--> <!-- <img src="/view/img/nopic.png" alt="google cloud platform - HttpError 403: The caller does not have permission when setting IAM policy for GCP projects - Stack Over" class="hover-scale" />--> <!-- </a>--> <!--</div>--> <div class="list-content"> <a title="google cloud platform - HttpError 403: The caller does not have permission when setting IAM policy for GCP projects - Stack Over" target="_blank" href="/p/1744004319a2517007.html"> <h3>google cloud platform - HttpError 403: The caller does not have permission when setting IAM policy for GCP projects - Stack Over</h3> </a> <span class="post-date">25天前</span> </div> </li> <li class="mclas"> <!--<div class="list-img">--> <!-- <a href="/p/1744012459a2518404.html" target="_blank">--> <!-- <img src="/view/img/nopic.png" alt="javascript - Angularjs: how to find an element based on a data-attribute value? - Stack Overflow" class="hover-scale" />--> <!-- </a>--> <!--</div>--> <div class="list-content"> <a title="javascript - Angularjs: how to find an element based on a data-attribute value? - Stack Overflow" target="_blank" href="/p/1744012459a2518404.html"> <h3>javascript - Angularjs: how to find an element based on a data-attribute value? - Stack Overflow</h3> </a> <span class="post-date">25天前</span> </div> </li> <li class="mclas"> <!--<div class="list-img">--> <!-- <a href="/p/1744032926a2521836.html" target="_blank">--> <!-- <img src="/view/img/nopic.png" alt="javascript - JQuery mousehover text on table td? - Stack Overflow" class="hover-scale" />--> <!-- </a>--> <!--</div>--> <div class="list-content"> <a title="javascript - JQuery mousehover text on table td? - Stack Overflow" target="_blank" href="/p/1744032926a2521836.html"> <h3>javascript - JQuery mousehover text on table td? - Stack Overflow</h3> </a> <span class="post-date">24天前</span> </div> </li> <li class="mclas"> <!--<div class="list-img">--> <!-- <a href="/p/1744033685a2521971.html" target="_blank">--> <!-- <img src="/view/img/nopic.png" alt="javascript - Using phantomjs to crawl a sitemap - Stack Overflow" class="hover-scale" />--> <!-- </a>--> <!--</div>--> <div class="list-content"> <a title="javascript - Using phantomjs to crawl a sitemap - Stack Overflow" target="_blank" href="/p/1744033685a2521971.html"> <h3>javascript - Using phantomjs to crawl a sitemap - Stack Overflow</h3> </a> <span class="post-date">24天前</span> </div> </li> <li class="mclas"> <!--<div class="list-img">--> <!-- <a href="/p/1744043160a2523632.html" target="_blank">--> <!-- <img src="/view/img/nopic.png" alt="Google play login page popup automatically when open my Android App while user not login system account - Stack Overflow" class="hover-scale" />--> <!-- </a>--> <!--</div>--> <div class="list-content"> <a title="Google play login page popup automatically when open my Android App while user not login system account - Stack Overflow" target="_blank" href="/p/1744043160a2523632.html"> <h3>Google play login page popup automatically when open my Android App while user not login system account - Stack Overflow</h3> </a> <span class="post-date">24天前</span> </div> </li> <li class="mclas"> <!--<div class="list-img">--> <!-- <a href="/p/1744060070a2526561.html" target="_blank">--> <!-- <img src="/view/img/nopic.png" alt="javascript - Openlayers Google Maps layers remain blank in Internet Explorer - Stack Overflow" class="hover-scale" />--> <!-- </a>--> <!--</div>--> <div class="list-content"> <a title="javascript - Openlayers Google Maps layers remain blank in Internet Explorer - Stack Overflow" target="_blank" href="/p/1744060070a2526561.html"> <h3>javascript - Openlayers Google Maps layers remain blank in Internet Explorer - Stack Overflow</h3> </a> <span class="post-date">24天前</span> </div> </li> <li class="mclas"> <!--<div class="list-img">--> <!-- <a href="/p/1744083392a2530673.html" target="_blank">--> <!-- <img src="/view/img/nopic.png" alt="javascript - How to include jQuery in AngularJS when using browserify? - Stack Overflow" class="hover-scale" />--> <!-- </a>--> <!--</div>--> <div class="list-content"> <a title="javascript - How to include jQuery in AngularJS when using browserify? - Stack Overflow" target="_blank" href="/p/1744083392a2530673.html"> <h3>javascript - How to include jQuery in AngularJS when using browserify? - Stack Overflow</h3> </a> <span class="post-date">24天前</span> </div> </li> <li class="mclas"> <!--<div class="list-img">--> <!-- <a href="/p/1744091621a2532139.html" target="_blank">--> <!-- <img src="/view/img/nopic.png" alt="html - How to maximize the space between charactersletters in a div (like with space-between in CSS flexbox)? - Stack Overflow" class="hover-scale" />--> <!-- </a>--> <!--</div>--> <div class="list-content"> <a title="html - How to maximize the space between charactersletters in a div (like with space-between in CSS flexbox)? - Stack Overflow" target="_blank" href="/p/1744091621a2532139.html"> <h3>html - How to maximize the space between charactersletters in a div (like with space-between in CSS flexbox)? - Stack Overflow</h3> </a> <span class="post-date">24天前</span> </div> </li> <li class="mclas"> <!--<div class="list-img">--> <!-- <a href="/p/1744098506a2533345.html" target="_blank">--> <!-- <img src="/view/img/nopic.png" alt="javascript - Removing %20 on output - Stack Overflow" class="hover-scale" />--> <!-- </a>--> <!--</div>--> <div class="list-content"> <a title="javascript - Removing %20 on output - Stack Overflow" target="_blank" href="/p/1744098506a2533345.html"> <h3>javascript - Removing %20 on output - Stack Overflow</h3> </a> <span class="post-date">24天前</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/1744100356a2533471.html" target="_blank">--> <!-- <img src="/view/img/nopic.png" alt="javascript - How do I toggle the readonly attribute of all child element with jquery - Stack Overflow" class="hover-scale" />--> <!-- </a>--> <!--</div>--> <div class="list-content"> <a title="javascript - How do I toggle the readonly attribute of all child element with jquery - Stack Overflow" target="_blank" href="/p/1744100356a2533471.html"> <h3>javascript - How do I toggle the readonly attribute of all child element with jquery - Stack Overflow</h3> </a> <span class="post-date">24天前</span> </div> </li> <li class="mclas"> <!--<div class="list-img">--> <!-- <a href="/p/1744100331a2533470.html" target="_blank">--> <!-- <img src="/view/img/nopic.png" alt="javascript - Might it be possible to block an entire US state from accessing my site, using PHP? - Stack Overflow" class="hover-scale" />--> <!-- </a>--> <!--</div>--> <div class="list-content"> <a title="javascript - Might it be possible to block an entire US state from accessing my site, using PHP? - Stack Overflow" target="_blank" href="/p/1744100331a2533470.html"> <h3>javascript - Might it be possible to block an entire US state from accessing my site, using PHP? - Stack Overflow</h3> </a> <span class="post-date">24天前</span> </div> </li> <li class="mclas"> <!--<div class="list-img">--> <!-- <a href="/p/1744100330a2533469.html" target="_blank">--> <!-- <img src="/view/img/nopic.png" alt="c++ - Is dereferencing std::span::end always undefined? - Stack Overflow" class="hover-scale" />--> <!-- </a>--> <!--</div>--> <div class="list-content"> <a title="c++ - Is dereferencing std::span::end always undefined? - Stack Overflow" target="_blank" href="/p/1744100330a2533469.html"> <h3>c++ - Is dereferencing std::span::end always undefined? - Stack Overflow</h3> </a> <span class="post-date">24天前</span> </div> </li> <li class="mclas"> <!--<div class="list-img">--> <!-- <a href="/p/1744100302a2533468.html" target="_blank">--> <!-- <img src="/view/img/nopic.png" alt="javascript - Delay function execution if it has been called recently - Stack Overflow" class="hover-scale" />--> <!-- </a>--> <!--</div>--> <div class="list-content"> <a title="javascript - Delay function execution if it has been called recently - Stack Overflow" target="_blank" href="/p/1744100302a2533468.html"> <h3>javascript - Delay function execution if it has been called recently - Stack Overflow</h3> </a> <span class="post-date">24天前</span> </div> </li> <li class="mclas"> <!--<div class="list-img">--> <!-- <a href="/p/1744100275a2533467.html" target="_blank">--> <!-- <img src="/view/img/nopic.png" alt="javascript - Google Maps Autocomplete List - Stack Overflow" class="hover-scale" />--> <!-- </a>--> <!--</div>--> <div class="list-content"> <a title="javascript - Google Maps Autocomplete List - Stack Overflow" target="_blank" href="/p/1744100275a2533467.html"> <h3>javascript - Google Maps Autocomplete List - Stack Overflow</h3> </a> <span class="post-date">24天前</span> </div> </li> <li class="mclas"> <!--<div class="list-img">--> <!-- <a href="/b/1744098521a2533348.html" target="_blank">--> <!-- <img src="/view/img/nopic.png" alt="windows设置断电重启开机后自动输入锁屏密码登录" class="hover-scale" />--> <!-- </a>--> <!--</div>--> <div class="list-content"> <a title="windows设置断电重启开机后自动输入锁屏密码登录" target="_blank" href="/b/1744098521a2533348.html"> <h3>windows设置断电重启开机后自动输入锁屏密码登录</h3> </a> <span class="post-date">24天前</span> </div> </li> <li class="mclas"> <!--<div class="list-img">--> <!-- <a href="/b/1744098338a2533314.html" target="_blank">--> <!-- <img src="/view/img/nopic.png" alt="Windows系统设置开机默认开启数字小键盘" class="hover-scale" />--> <!-- </a>--> <!--</div>--> <div class="list-content"> <a title="Windows系统设置开机默认开启数字小键盘" target="_blank" href="/b/1744098338a2533314.html"> <h3>Windows系统设置开机默认开启数字小键盘</h3> </a> <span class="post-date">24天前</span> </div> </li> <li class="mclas"> <!--<div class="list-img">--> <!-- <a href="/b/1744098057a2533264.html" target="_blank">--> <!-- <img src="/view/img/nopic.png" alt="Windows11 开机自动同步时间(开机时间不更新问题)" class="hover-scale" />--> <!-- </a>--> <!--</div>--> <div class="list-content"> <a title="Windows11 开机自动同步时间(开机时间不更新问题)" target="_blank" href="/b/1744098057a2533264.html"> <h3>Windows11 开机自动同步时间(开机时间不更新问题)</h3> </a> <span class="post-date">24天前</span> </div> </li> <li class="mclas"> <!--<div class="list-img">--> <!-- <a href="/b/1744097709a2533205.html" target="_blank">--> <!-- <img src="/view/img/nopic.png" alt="windows配置开机自启动软件或脚本" class="hover-scale" />--> <!-- </a>--> <!--</div>--> <div class="list-content"> <a title="windows配置开机自启动软件或脚本" target="_blank" href="/b/1744097709a2533205.html"> <h3>windows配置开机自启动软件或脚本</h3> </a> <span class="post-date">24天前</span> </div> </li> <li class="mclas"> <!--<div class="list-img">--> <!-- <a href="/b/1744097548a2533178.html" target="_blank">--> <!-- <img src="/view/img/nopic.png" alt="【Redis】Windows设置Redis为开机自启动" class="hover-scale" />--> <!-- </a>--> <!--</div>--> <div class="list-content"> <a title="【Redis】Windows设置Redis为开机自启动" target="_blank" href="/b/1744097548a2533178.html"> <h3>【Redis】Windows设置Redis为开机自启动</h3> </a> <span class="post-date">24天前</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">3月前</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">3月前</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">3月前</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">3月前</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">3月前</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> <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-4"]').addClass('current-menu-item'); $('.menu-header-container li[data-active="fid-4"]').addClass('current-menu-item'); </script> </body> </html>