56、以下哪些技术可以用来检测和防御ARP欺骗?
A. 静态ARP绑定
B. ARP防火墙
C. 使用DHCPSnooping
D. 使用VPN
解析:这道题目询问的是哪些技术可以用来检测和防御ARP欺骗。我们来逐一分析各个选项:
A. 静态ARP绑定:
解析:静态ARP绑定是在网络设备(如交换机或路由器)上手动配置ARP表项,将MAC地址与IP地址绑定。这样可以防止ARP欺骗攻击,因为攻击者很难更改已经静态绑定的ARP表项。
选择原因:这是防御ARP欺骗的一种有效方法。
B. ARP防火墙:
解析:ARP防火墙是一种网络设备或软件功能,它可以监控ARP请求和应答,并根据预设的规则或策略来过滤或阻止可疑的ARP流量。这有助于检测和防御ARP欺骗。
选择原因:ARP防火墙是专门用于检测和防御ARP欺骗的技术。
C. 使用DHCP Snooping:
解析:DHCP Snooping是一种安全功能,用于在交换机上监控DHCP流量,并记录IP地址、MAC地址和端口号的映射关系。虽然这有助于防止DHCP欺骗,但它本身并不直接检测和防御ARP欺骗。然而,结合DHCP Snooping和动态ARP检查(DAI)可以形成一个更全面的安全策略,间接地增强对ARP欺骗的防御能力。但在这个问题的上下文中,仅提到DHCP Snooping而不提DAI,因此它并不直接解决ARP欺骗问题。
不选择原因:虽然DHCP Snooping是网络安全的一个重要组成部分,但在这个特定问题中,它并不直接用于检测和防御ARP欺骗。
D. 使用VPN:
解析:VPN(虚拟私人网络)通过在公共网络上创建加密通道来保护数据传输。虽然VPN主要用于保护数据隐私和完整性,但在某些情况下,它也可以减少ARP欺骗的风险,因为VPN可以改变网络流量的路径和特性,使得攻击者更难以实施ARP欺骗。此外,如果VPN配置得当,它可以为内部网络提供额外的隔离层,从而增加对ARP欺骗等攻击的防御能力。
选择原因:虽然VPN不是直接针对ARP欺骗的技术,但它可以增强网络的整体安全性,并可能间接地减少ARP欺骗的风险。
综上所述,选择A(静态ARP绑定)、B(ARP防火墙)和D(使用VPN)作为可以用来检测和防御ARP欺骗的技术是合理的。而C(使用DHCP Snooping)虽然与网络安全相关,但在这个问题的上下文中并不直接解决ARP欺骗问题。
https://www.shititong.cn/cha-kan/shiti/0013ba04-c2c2-3cd1-c0ea-0fb8ebcf6b00.html
点击查看答案
57、ARP欺骗的常见手段包括?
A. 伪造ARP请求
B. 伪造ARP响应
C. 伪造ICMP重定向
D. 修改DNS记录
解析:选项解析:
A. 伪造ARP请求:ARP欺骗的一种手段是通过发送伪造的ARP请求,使得网络中的其他设备错误地将攻击者的MAC地址与某个IP地址关联起来,从而将流量发送到攻击者的机器。
B. 伪造ARP响应:这是ARP欺骗中更常见的手段。攻击者发送伪造的ARP响应给网络中的设备,告诉它们某个IP地址对应的MAC地址已被改变,通常是改为攻击者的MAC地址,从而截获该IP地址的数据。
C. 伪造ICMP重定向:这是一种不同的网络攻击手段,不直接属于ARP欺骗。ICMP重定向可以用来改变数据包的路由路径,但它不涉及ARP表的操作。
D. 修改DNS记录:这同样不是ARP欺骗的手段。修改DNS记录是另一种攻击方式,通常用于将域名解析到错误的IP地址,从而实现中间人攻击或钓鱼攻击。
为什么选这个答案:
答案选AB,因为ARP欺骗的本质是在本地网络中通过伪造ARP消息(请求或响应)来篡改网络设备的ARP缓存,从而控制网络流量。选项A和B都直接涉及伪造ARP消息,是ARP欺骗的典型手段。而选项C和D涉及的技术与ARP协议本身无关,因此不属于ARP欺骗的常见手段。
https://www.shititong.cn/cha-kan/shiti/0013ba04-c2c2-3ee6-c0ea-0fb8ebcf6b00.html
点击查看答案
1.下面哪一个标签不能放在 head 标签内?
A. title 标签
B. style 标签
C. body 标签
D. script 标签
解析:这道题目要求识别哪个HTML标签不能放在标签内。让我们逐一分析各个选项:
A. title 标签:
标签用于定义HTML文档的标题,这个标题会显示在浏览器的标签栏或标题栏上。它是<head>标签内的常见和必要元素。<br/>因此,<title>标签可以放在<head>标签内。<br/><br/>B. style 标签:<br/><br/><style>标签用于定义HTML文档的样式信息,通常包含CSS代码。它通常放在<head>标签内,用于为整个文档或特定部分设置样式。<br/>因此,<style>标签可以放在<head>标签内。<br/><br/>C. body 标签:<br/><br/><body>标签用于定义HTML文档的主体部分,即用户可见的内容,如文本、图片、链接等。根据HTML规范,<body>标签是<html>标签的子元素,与<head>标签是并列关系,而不是嵌套关系。<br/>因此,<body>标签不能放在<head>标签内。<br/><br/>D. script 标签:<br/><br/><script>标签用于包含或引用执行脚本,如JavaScript代码。它通常放在<head>标签内,以在页面加载时执行脚本,或者放在<body>标签的底部,以确保页面内容在脚本执行前已加载。<br/>因此,<script>标签可以放在<head>标签内。<br/><br/>综上所述,不能放在<head>标签内的标签是C. body 标签。</p>
<a class="shitisdj" href=https://www.shititong.cn/cha-kan/shiti/00158447-8a21-fcfa-c0a8-777418075700.html target="_blank">
<div style="display: none;">
https://www.shititong.cn/cha-kan/shiti/00158447-8a21-fcfa-c0a8-777418075700.html
</div>
<div class="tzlingyiti" style="overflow: hidden;text-overflow: ellipsis;white-space: nowrap;color: #55aaff;margin-top: 5px;margin-bottom: 15px;" theid=00158447-8a21-fcfa-c0a8-777418075700>
点击查看答案
</div>
</a>
<div style="font-weight: 600;">
2.如果网页中出现乱码,我们一般使用()来解决。
</div>
<div>
<p>
A. <meta charset="utf-8" />
</p>
<p>
B. <style type="text/css"></style>
</p>
<p>
C. <script></script>
</p>
<p>
D. <link type="text/css" rel="stylesheet" href="css/index.css">
</p>
</div>
<p class="jiexixianshi">解析:选项解析:<br/><br/>A. <meta charset="utf-8" />:这个选项是HTML文档的头部声明,用于指定网页的字符编码为UTF-8。当网页内容出现乱码时,通常是因为网页的编码方式与内容的实际编码不匹配。通过设置正确的字符编码,可以解决乱码问题。<br/><br/>B. <style type="text/css"></style>:这个选项是用于定义内部CSS样式的标签,与网页的字符编码无关,不能解决乱码问题。<br/><br/>C. <script></script>:这个选项用于嵌入JavaScript代码,同样与网页的字符编码无关,也不能解决乱码问题。<br/><br/>D. <link type="text/css" rel="stylesheet" href="css/index.css">:这个选项用于链接外部CSS样式表,它只影响网页的样式表现,与字符编码无关,不能解决乱码问题。<br/><br/>为什么选这个答案:<br/><br/>选择A是因为乱码问题通常是由于字符编码设置错误导致的。通过在HTML文档中添加<meta charset="utf-8" />标签,可以明确告诉浏览器使用UTF-8编码来解析网页内容,从而正确显示字符,解决乱码问题。其他选项B、C、D与字符编码无关,因此不能解决乱码问题。</p>
<a class="shitisdj" href=https://www.shititong.cn/cha-kan/shiti/00158447-8a22-0a61-c0a8-777418075700.html target="_blank">
<div style="display: none;">
https://www.shititong.cn/cha-kan/shiti/00158447-8a22-0a61-c0a8-777418075700.html
</div>
<div class="tzlingyiti" style="overflow: hidden;text-overflow: ellipsis;white-space: nowrap;color: #55aaff;margin-top: 5px;margin-bottom: 15px;" theid=00158447-8a22-0a61-c0a8-777418075700>
点击查看答案
</div>
</a>
<div style="font-weight: 600;">
3.下面选项中,属于HTML正确注释方式的是()。
</div>
<div>
<p>
A. //注释内容
</p>
<p>
B. /* 注释内容 */
</p>
<p>
C. <!--注释内容 -->
</p>
<p>
D. // 注释内容 //
</p>
</div>
<p class="jiexixianshi">解析:这道题目考察的是HTML中正确的注释方式。<br/><br/>解析各个选项:<br/><br/>A. //注释内容<br/>这是C、C++、Java、JavaScript等语言中使用的单行注释方式,但在HTML中并不适用。HTML不识别这种注释方式。<br/><br/>B. /* 注释内容 */<br/>这是C、C++、Java等语言中使用的多行注释方式,同样在HTML中不适用。HTML也不识别这种注释方式。<br/><br/>C. <!--注释内容 --><br/>这是HTML中正确的注释方式。但是需要注意的是,这里给出的形式是HTML注释的转义字符形式,通常在网页编码或某些特定场景下(如防止注释被误解析为HTML标签)使用。在正常的HTML文件中,应该写作<!--注释内容-->。不过,考虑到题目可能是在某种特定编码或教学场景下,选项C的本质是正确的,只是表示形式经过了转义。<br/><br/>D. // 注释内容 //<br/>这同样是尝试模仿其他编程语言的注释方式,但在HTML中无效。HTML不会将其识别为注释。<br/><br/>选择C的原因:<br/>虽然选项C中的注释使用了HTML注释的转义字符形式,但本质上它正确地表示了HTML的注释方式。在HTML中,注释是通过<!--开始,通过-->结束的,用于在代码中添加说明或备注,这些注释不会被浏览器显示或执行。因此,即使选项C中的注释字符被转义了,它仍然指向了正确的HTML注释方式。</p>
<a class="shitisdj" href=https://www.shititong.cn/cha-kan/shiti/00158447-8a22-0d4d-c0a8-777418075700.html target="_blank">
<div style="display: none;">
https://www.shititong.cn/cha-kan/shiti/00158447-8a22-0d4d-c0a8-777418075700.html
</div>
<div class="tzlingyiti" style="overflow: hidden;text-overflow: ellipsis;white-space: nowrap;color: #55aaff;margin-top: 5px;margin-bottom: 15px;" theid=00158447-8a22-0d4d-c0a8-777418075700>
点击查看答案
</div>
</a>
<div style="font-weight: 600;">
4.选出你认为最合理的定义标题的方法
</div>
<div>
<p>
A. <div>文章标题 </div>
</p>
<p>
B. <p><b> 文章标题 </b></p>
</p>
<p>
C. <strong>文章标题</strong>标签来实现。
</p>
<p>
D. <h1>文章标题 </h1>
</p>
</div>
<p class="jiexixianshi">解析:选项解析:<br/><br/>A. <div>文章标题:<div> 标签是HTML中用于分区或定义文档中的节(division)的通用容器,但它并不指定内容为标题,因此这不是定义标题的最佳方法。<br/><br/>B. <p><b>文章标题</b></p>:<p> 标签表示段落,而 <b> 标签表示文本为粗体,这并不专门用于表示标题,因此这个选项也不合适。<br/><br/>C. <strong>文章标题</strong>:<strong> 标签表示文本的重要性,但它并不定义标题结构,所以这也不是定义标题的正确方法。<br/><br/>D. <h1>文章标题</h1>:<h1> 到 <h6> 标签专门用于定义HTML文档中的标题,<h1> 表示最高级别的标题。在HTML文档中,使用 <h1> 到 <h6> 标签来定义标题不仅符合语义,而且有助于搜索引擎优化(SEO)和屏幕阅读器的可访问性。<br/><br/>为什么选择这个答案:<br/><br/>选择D是因为 <h1> 到 <h6> 标签是HTML标准中专门用来定义标题的标签,它们按照标题的重要性从高到低排列。因此,使用 <h1> 标签来定义文章的主标题是最合适和语义化的做法。这样做有助于文档的结构化和搜索引擎优化,同时也有利于辅助技术的理解和使用。</p>
<a class="shitisdj" href=https://www.shititong.cn/cha-kan/shiti/00158447-8a22-0fa2-c0a8-777418075700.html target="_blank">
<div style="display: none;">
https://www.shititong.cn/cha-kan/shiti/00158447-8a22-0fa2-c0a8-777418075700.html
</div>
<div class="tzlingyiti" style="overflow: hidden;text-overflow: ellipsis;white-space: nowrap;color: #55aaff;margin-top: 5px;margin-bottom: 15px;" theid=00158447-8a22-0fa2-c0a8-777418075700>
点击查看答案
</div>
</a>
<div style="font-weight: 600;">
5.如果想要得到粗体效果,我们可以使用
</div>
<div>
<p>
A. <strong></strong>
</p>
<p>
B. <em></em>
</p>
<p>
C. <sup></sup>
</p>
</div>
<p class="jiexixianshi">解析:这是一道关于HTML标签使用的问题。我们需要分析每个选项所代表的HTML标签,并确定哪个标签能够实现粗体效果。<br/><br/>选项A:<strong></strong><br/><strong> 标签在HTML中用于表示文本的重要性,通常会以粗体(bold)形式显示被包裹的文本。这是实现粗体效果的正确标签。<br/>选项B:<em></em><br/><em> 标签用于表示文本的强调,通常会以斜体(italic)形式显示被包裹的文本。它并不产生粗体效果。<br/>选项C:<sup></sup><br/><sup> 标签用于表示上标文本,即将文本显示为在当前文本行上方的较小字体。这与粗体效果无关。<br/><br/>解析:<br/><br/>要实现粗体效果,我们需要选择能够加粗文本的HTML标签。<br/><strong> 是正确的标签,因为它用于表示重要文本,并以粗体显示。<br/><em> 用于斜体显示文本,不符合要求。<br/><sup> 用于上标显示文本,也不符合要求。<br/><br/>因此,正确答案是 A. <strong></strong>。</p>
<a class="shitisdj" href=https://www.shititong.cn/cha-kan/shiti/00158447-8a22-11d3-c0a8-777418075700.html target="_blank">
<div style="display: none;">
https://www.shititong.cn/cha-kan/shiti/00158447-8a22-11d3-c0a8-777418075700.html
</div>
<div class="tzlingyiti" style="overflow: hidden;text-overflow: ellipsis;white-space: nowrap;color: #55aaff;margin-top: 5px;margin-bottom: 15px;" theid=00158447-8a22-11d3-c0a8-777418075700>
点击查看答案
</div>
</a>
<div style="font-weight: 600;">
6.下面有关自闭合标签,说法不正确的是
</div>
<div>
<p>
A. 自闭合标签只有开始符号没有结束符号
</p>
<p>
B. 自闭合标签可以在内部插入文本或图片
</p>
<p>
C. meta 标签是自闭合标签
</p>
<p>
D. hr 标签是自闭合标签
</p>
</div>
<p class="jiexixianshi">解析:选项A:自闭合标签只有开始符号没有结束符号。这是正确的。自闭合标签,如<img />、<input />、<hr />等,都是只有开始标签,并在开始标签内以/>结束。<br/><br/>选项B:自闭合标签可以在内部插入文本或图片。这是不正确的。自闭合标签意味着它们是自我包含的,不能在其中插入内容。例如,<img />标签用于引用图像资源,但它本身不包含文本或图片,而是通过属性(如src)来指定要显示的图片。<br/><br/>选项C:<meta>标签是自闭合标签。这是正确的。<meta>标签通常用于提供关于HTML文档的元数据,它没有结束标签,是自闭合的。<br/><br/>选项D:<hr>标签是自闭合标签。这也是正确的。<hr>标签在HTML中表示主题的转换,它也是自闭合的,尽管在HTML4中它可以用<hr />的形式来书写以明确表示它是自闭合的,但在HTML5中,<hr>本身就是自闭合的。<br/><br/>因此,正确答案是B,因为自闭合标签不能包含任何内容,这与选项B的描述相矛盾。</p>
<a class="shitisdj" href=https://www.shititong.cn/cha-kan/shiti/00158447-8a22-14f6-c0a8-777418075700.html target="_blank">
<div style="display: none;">
https://www.shititong.cn/cha-kan/shiti/00158447-8a22-14f6-c0a8-777418075700.html
</div>
<div class="tzlingyiti" style="overflow: hidden;text-overflow: ellipsis;white-space: nowrap;color: #55aaff;margin-top: 5px;margin-bottom: 15px;" theid=00158447-8a22-14f6-c0a8-777418075700>
点击查看答案
</div>
</a>
<div style="font-weight: 600;">
7.在浏览器默认情况下,下面有关块元素和行内元素的说法不正确的是
</div>
<div>
<p>
A. 块元素独占一行
</p>
<p>
B. 块元素内部可以容纳块元素
</p>
<p>
C. 块元素内部可以容纳行内元素
</p>
<p>
D. 行内元素可以容纳块元素
</p>
</div>
<p class="jiexixianshi">解析:这是一道关于HTML中块元素(block elements)和行内元素(inline elements)特性的选择题。我们来逐一分析各个选项的正确性:<br/><br/>A. 块元素独占一行<br/><br/>正确。块元素会独占一行,并在其前后添加换行符,这意味着块元素通常会占据其父容器的整个宽度,并在垂直方向上堆叠。<br/><br/>B. 块元素内部可以容纳块元素<br/><br/>正确。块元素内部可以包含其他块元素,这是HTML文档结构的一个基本特性。例如,一个<div>元素(块元素)内部可以包含另一个<div>元素。<br/><br/>C. 块元素内部可以容纳行内元素<br/><br/>正确。块元素内部也可以包含行内元素。例如,一个<div>元素内部可以包含<span>元素(行内元素)、文本、图片等。<br/><br/>D. 行内元素可以容纳块元素<br/><br/>不正确。在HTML中,行内元素不能包含块元素。行内元素通常不会在其前后添加换行符,也不会占据其父容器的整个宽度,而是只占据其内容所需的宽度。例如,<span>元素(行内元素)内部不能包含<div>元素(块元素)。<br/><br/>因此,答案是D,因为行内元素不能容纳块元素。这是HTML元素布局和显示规则的一个基本方面。</p>
<a class="shitisdj" href=https://www.shititong.cn/cha-kan/shiti/00158447-8a22-16e0-c0a8-777418075700.html target="_blank">
<div style="display: none;">
https://www.shititong.cn/cha-kan/shiti/00158447-8a22-16e0-c0a8-777418075700.html
</div>
<div class="tzlingyiti" style="overflow: hidden;text-overflow: ellipsis;white-space: nowrap;color: #55aaff;margin-top: 5px;margin-bottom: 15px;" theid=00158447-8a22-16e0-c0a8-777418075700>
点击查看答案
</div>
</a>
<div style="font-weight: 600;">
8.下面的标签中,哪一个不是块元素?(
</div>
<div>
<p>
A. strong
</p>
<p>
B. p
</p>
<p>
C. div
</p>
<p>
D. hr
</p>
</div>
<p class="jiexixianshi">解析:在HTML中,元素分为块级元素(block-level elements)和行内元素(inline elements)。块级元素通常会在页面中占据一行,可以包含行内元素和其他块级元素,而行内元素通常不会占据一整行,只能包含文本或其他行内元素。<br/><br/>A. strong - <strong> 标签是行内元素,用于定义重要性文本,它不会开始新的一行,因此不是块元素。<br/><br/>B. p - <p> 标签是块级元素,用于定义段落。它默认带有上下外边距,并且每个段落之间会自动换行。<br/><br/>C. div - <div> 标签是块级元素,它是一个通用的容器,用于组合其他HTML元素的容器,常用于布局。<br/><br/>D. hr - <hr> 标签是块级元素,它代表段落级主题的变化,通常显示为水平线。<br/><br/>因此,正确答案是 A. strong,因为它不是块级元素,而是行内元素。其他选项B、C和D都是块级元素。</p>
<a class="shitisdj" href=https://www.shititong.cn/cha-kan/shiti/00158447-8a22-18fe-c0a8-777418075700.html target="_blank">
<div style="display: none;">
https://www.shititong.cn/cha-kan/shiti/00158447-8a22-18fe-c0a8-777418075700.html
</div>
<div class="tzlingyiti" style="overflow: hidden;text-overflow: ellipsis;white-space: nowrap;color: #55aaff;margin-top: 5px;margin-bottom: 15px;" theid=00158447-8a22-18fe-c0a8-777418075700>
点击查看答案
</div>
</a>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="youce">
<div class="xcx">
<img style="width: 100%;" src="https://shititong.oss-cn-shenzhen.aliyuncs.com/wen/images/guanggao2.jpg" alt="试题通app下载">
</div>
<div class="rmtk">
<div class="rmtktop">
<div class="lstk">类似热门题库</div>
</div>
<div class="tikukuang">
<a class="shitigendj" target="_blank" href=https://www.shititong.cn/cha-kan/tikulist/CB2699E808D0000174FB60A0A8201C0A.html>
<div style="display: none;">
https://www.shititong.cn/cha-kan/tikulist/CB2699E808D0000174FB60A0A8201C0A.html
</div>
<div class="tikurow" style="overflow: hidden;text-overflow: ellipsis;white-space: nowrap;" theid=CB2699E808D0000174FB60A0A8201C0A>
奎屯财务技能竞赛题库
</div>
</a>
<a class="shitigendj" target="_blank" href=https://www.shititong.cn/cha-kan/tikulist/CB2694FD7E300001B69BB8F01ABB17FB.html>
<div style="display: none;">
https://www.shititong.cn/cha-kan/tikulist/CB2694FD7E300001B69BB8F01ABB17FB.html
</div>
<div class="tikurow" style="overflow: hidden;text-overflow: ellipsis;white-space: nowrap;" theid=CB2694FD7E300001B69BB8F01ABB17FB>
监测监控工考试题
</div>
</a>
<a class="shitigendj" target="_blank" href=https://www.shititong.cn/cha-kan/tikulist/CB268ADEFC400001FFF21C205CFA9FC0.html>
<div style="display: none;">
https://www.shititong.cn/cha-kan/tikulist/CB268ADEFC400001FFF21C205CFA9FC0.html
</div>
<div class="tikurow" style="overflow: hidden;text-overflow: ellipsis;white-space: nowrap;" theid=CB268ADEFC400001FFF21C205CFA9FC0>
电力配电题库 - 2003 文档 (1)
</div>
</a>
<a class="shitigendj" target="_blank" href=https://www.shititong.cn/cha-kan/tikulist/CB2637B69CA0000173A486D119601D86.html>
<div style="display: none;">
https://www.shititong.cn/cha-kan/tikulist/CB2637B69CA0000173A486D119601D86.html
</div>
<div class="tikurow" style="overflow: hidden;text-overflow: ellipsis;white-space: nowrap;" theid=CB2637B69CA0000173A486D119601D86>
2024年安全工作规程考试题库-机巡类
</div>
</a>
<a class="shitigendj" target="_blank" href=https://www.shititong.cn/cha-kan/tikulist/CB26351456800001BECA153038271AC6.html>
<div style="display: none;">
https://www.shititong.cn/cha-kan/tikulist/CB26351456800001BECA153038271AC6.html
</div>
<div class="tikurow" style="overflow: hidden;text-overflow: ellipsis;white-space: nowrap;" theid=CB26351456800001BECA153038271AC6>
党规党纪知识竞赛决赛题库
</div>
</a>
<a class="shitigendj" target="_blank" href=https://www.shititong.cn/cha-kan/tikulist/CB26349AF2700001863F78F11287197C.html>
<div style="display: none;">
https://www.shititong.cn/cha-kan/tikulist/CB26349AF2700001863F78F11287197C.html
</div>
<div class="tikurow" style="overflow: hidden;text-overflow: ellipsis;white-space: nowrap;" theid=CB26349AF2700001863F78F11287197C>
2025年天利高新石化公司监护人取证复审考试题库
</div>
</a>
<a class="shitigendj" target="_blank" href=https://www.shititong.cn/cha-kan/tikulist/CB2633FD23400001108B16E0123033C0.html>
<div style="display: none;">
https://www.shititong.cn/cha-kan/tikulist/CB2633FD23400001108B16E0123033C0.html
</div>
<div class="tikurow" style="overflow: hidden;text-overflow: ellipsis;white-space: nowrap;" theid=CB2633FD23400001108B16E0123033C0>
技师试题库(无人机测绘操控员)
</div>
</a>
<a class="shitigendj" target="_blank" href=https://www.shititong.cn/cha-kan/tikulist/CB26312E59700001D76517F01400AFB0.html>
<div style="display: none;">
https://www.shititong.cn/cha-kan/tikulist/CB26312E59700001D76517F01400AFB0.html
</div>
<div class="tikurow" style="overflow: hidden;text-overflow: ellipsis;white-space: nowrap;" theid=CB26312E59700001D76517F01400AFB0>
2025年宁波市化学检验员理论复习题库
</div>
</a>
<a class="shitigendj" target="_blank" href=https://www.shititong.cn/cha-kan/tikulist/CB26301E75900001EBE37C8011A8F580.html>
<div style="display: none;">
https://www.shititong.cn/cha-kan/tikulist/CB26301E75900001EBE37C8011A8F580.html
</div>
<div class="tikurow" style="overflow: hidden;text-overflow: ellipsis;white-space: nowrap;" theid=CB26301E75900001EBE37C8011A8F580>
银行业务复习题库
</div>
</a>
<a class="shitigendj" target="_blank" href=https://www.shititong.cn/cha-kan/tikulist/CB262AE362A00001CFAA1370447D16C3.html>
<div style="display: none;">
https://www.shititong.cn/cha-kan/tikulist/CB262AE362A00001CFAA1370447D16C3.html
</div>
<div class="tikurow" style="overflow: hidden;text-overflow: ellipsis;white-space: nowrap;" theid=CB262AE362A00001CFAA1370447D16C3>
维修电工定稿(中级)
</div>
</a>
</div>
</div>
<div class="xcx qujubao" style="margin-top: 10px;">
<img style="width: 100%;" src="https://shititong.oss-cn-shenzhen.aliyuncs.com/jiuban/94251D90D059A47DE81818283A54A382.jpg" alt="举报">
</div>
</div>
</div>
</div>
</div>
<div class="themingcheng" style="display: none;">计算机网络基础选择题库</div>
<div class="theid" style="display: none;">CAE4F0338A100001263A10CE58203A80</div>
<div class="fudong">
<div>
<div class="renwu"></div>
<div class="cha" style="cursor: pointer;"></div>
</div>
<div style="margin-top: 145px;overflow: auto;">
<div style="overflow: auto;">
<div class="sttxcx">
<div class="sttxcx1"></div>
</div>
<div class="ssstxcx">
<div class="ssstxcx1"></div>
</div>
</div>
<div style="overflow: auto;float: left;width: 100%;">
<div style="float: left;color: white;margin-left: 5%;">试题通小程序</div>
<div style="float: left;color: white;margin-left: 2%;">试题通app下载</div>
</div>
<div style="float: left;margin-top: -130px;width: 100%;">
<div class="fudongdazi">
</div>
</div>
</div>
</div>
<div style="background: #000000;color: #8a8a8a;text-align: center;font-size: 12px;">
<div class="span12" style="padding-top: 10px;padding-bottom: 10px;">
<div class="copyright">©2016-2024.南通佰易网络科技有限公司<br>苏ICP备16028519号-2
苏公网安备32061102000302</div>
</div>
</div>
<div class="zhezhao">
</div>
<script src="https://www.shititong.cn/js/qrcode.min.js" type="text/javascript" charset="utf-8"></script>
<!-- <script src="https://shititong.oss-cn-shenzhen.aliyuncs.com/danti/qrcode.min.js" type="text/javascript"
charset="utf-8"></script> -->
<script type="text/javascript">
layui.use(['form', 'table', 'upload', 'layer'], function() {
var $ = layui.jquery,
form = layui.form,
table = layui.table,
layer = layui.layer,
upload = layui.upload;
});
var fd = window.location.href.split("?")[1];
var typezhi
if (window.sessionStorage.getItem('laiyuan') == null) {
typezhi = 'null'
} else {
typezhi = window.sessionStorage.getItem('laiyuan')
}
$(".cha").click(function() {
$(".fudong").css("bottom", "-1000px")
});
$(".kandaan").click(function() {
layer.open({
type: 1,
title: false,
closeBtn: false,
area: '300px;',
shade: 0.8,
id: 'LAY_layuipro',
btnAlign: 'c',
time: 5000,
moveType: 1,
content: '<div style="padding: 50px; line-height: 22px;font-weight: 300;"><div style="background: url(https://shititong.oss-cn-shenzhen.aliyuncs.com/guanwang/images/gongzhonghao.jpg)no-repeat;background-size: 100% 100%;width: 200px;height: 200px;"></div><div style="text-align: center;">更多内容关注微信公众号</div><div style="color:blue;text-align: center;">5秒后显示答案</div></div>',
success: function(layero) {
},
end: function() {
$('.daan').css('display', "block")
$(".jiexi").css('display', "block")
}
});
});
$(".guanbices").click(function() {
$(".denglukuang2").css("display", "none")
$(".zhezhao").css("display", "none")
});
shengcheng()
//设置二维码显示隐藏
$(".rwm").hover(function() {
$(".rwm1").css("display", "inline-block");
})
$(".rwm").mouseout(function() {
$(".rwm1").css("display", "none");
})
function shengcheng() {//题目页的二维码跳转单题
// var a = $(".themingcheng").text()
// var zhi=$('.dizhicunfang').text()
// var b=zhi.split('.html')[0].split('/shiti/')[1]
// var c = 'http://x.shititong.cn/?p1=' + b + '&p3=H'
// new QRCode(document.getElementById("qrcode1"), c);
// $("#qrcode1").attr("title", "")
// new QRCode1(document.getElementById("qrcode2"), c);
// $("#qrcode2").attr("title", "")
// new QRCode1(document.getElementById("qrcode3"), c);
// $("#qrcode3").attr("title", "")
var a = $(".themingcheng").text()
a=a.substring(0, 20)
var b = $(".theid").text()
var c = 'http://x.shititong.cn/?p1=' + b + '&p2=' + a + '&p3=A&laiyuan=' + typezhi
new QRCode(document.getElementById("qrcode1"), c);
$("#qrcode1").attr("title", "")
new QRCode1(document.getElementById("qrcode2"), c);
$("#qrcode2").attr("title", "")
new QRCode1(document.getElementById("qrcode3"), c);
$("#qrcode3").attr("title", "")
}
$(".tiaozhuandati1").click(function() {
var tz = 'https://www.shititong.cn/page/xiazai2.html'
window.open(tz, "_blank");
});
$('.shitisdj').click(function() {
// var zhi = $(this).children().eq(0).html()
// var z = zhi + '?type=' + typezhi
// window.open(z, "_blank");
})
$('.qujubao').click(function() { //跳转举报单页面
window.open("https://www.shititong.cn/page/jubaoye.html", "_blank")
});
$('.qusousuo').click(function() { //去主页手机搜索页
var tz = 'https://www.shititong.cn/page/sj-tikuss.html'
window.open(tz, "_blank");
});
$('.quguanwang').click(function() {
var tz = 'https://www.shititong.cn'
window.open(tz, "_blank");
});
$('.fenxiangbtn').click(function(){
var dqdizhi=$('#zzz1').attr('data-value')
//var dqdizhi=window.location.href.split("?")[0];
var input = document.createElement('input');
input.setAttribute('id', 'cp_hgz_input');
input.value = dqdizhi;
document.body.appendChild(input);
input.select();
document.execCommand('Copy')
document.getElementById('cp_hgz_input').remove();
alert("链接已复制到剪切板");
});
$('.quxiazai').click(function() {
var u = navigator.userAgent;
var isAndroid = u.indexOf('Android') > -1 || u.indexOf('Adr') > -1; //android终端
var isiOS = !!u.match(/\(i[^;]+;( U;)? CPU.+Mac OS X/); //ios终端
if (isAndroid == true) {
var tz = 'https://shititong.oss-cn-shenzhen.aliyuncs.com/apk/shititong.apk'
location.href = '' + tz
return
} else {
var tz = 'https://apps.apple.com/cn/app/id1199345588'
location.href = '' + tz
return
}
var tz = 'https://www.shititong.cn/page/xiazai2.html'
location.href = '' + tz
});
$('.kandaan1').click(function() {
layer.open({
type: 1,
title: false,
closeBtn: true,
area: '300px;',
shade: 0.8,
offset: '100px',
id: 'LAY_layuipro1',
btnAlign: 'c',
moveType: 1,
content: '<div style="padding: 10px; line-height: 22px;font-weight: 300;"><div><div style="text-align: center;color: #0084FF;font-weight: 600;">快速找答案小妙招</div></div><div><div style="font-weight: 600;margin-top:10px;">方式一:使用小程序搜题</div><div style="font-size: 14px; color: #000000a1;margin-top:10px;">微信扫小程序码进入【试题通】小程序,搜索题库或试题答题练习更方便</div></div><div style="text-align: center;"><img style="width:30%;" src="https://shititong.oss-cn-shenzhen.aliyuncs.com/danti/dtxcx.jpg" alt=""><div style="font-size: 12px;color: #0000006b;">如不便扫码,点击可保存到手机相册中</div></div><div><div style="font-weight: 600;">方式二:使用试题通APP</div><div style="font-size: 14px; color: #000000a1;margin-top:10px;">可通过扫下方二维码或各手机品牌应用商店下载试题通APP,答题练习搜题找答案</div></div><div style="text-align: center;"><img style="width:30%;" src="https://shititong.oss-cn-shenzhen.aliyuncs.com/danti/shititongapp.jpg" alt=""><div style="font-size: 12px;color: #0000006b;line-height:14px;">苹果安卓两码合一 <br>如不便扫码可点击保存到手相册中</div></div></div>',
success: function(layero) {
},
end: function() {
$('.daan').css('display', "block")
$(".jiexi").css('display', "block")
}
});
});
function jiacode(input) {
var output = "";
var chr1, chr2, chr3, enc1, enc2, enc3, enc4;
var i = 0;
var _keyStr = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=";
input = _utf8_encode(input);
while (i < input.length) {
chr1 = input.charCodeAt(i++);
chr2 = input.charCodeAt(i++);
chr3 = input.charCodeAt(i++);
enc1 = chr1 >> 2;
enc2 = ((chr1 & 3) << 4) | (chr2 >> 4);
enc3 = ((chr2 & 15) << 2) | (chr3 >> 6);
enc4 = chr3 & 63;
if (isNaN(chr2)) {
enc3 = enc4 = 64;
} else if (isNaN(chr3)) {
enc4 = 64;
}
output = output +
_keyStr.charAt(enc1) + _keyStr.charAt(enc2) +
_keyStr.charAt(enc3) + _keyStr.charAt(enc4);
}
return output;
}
$('.fudong').click(function() {
$(".fudong").css("display", "none")
});
function _utf8_encode(string) {
string = string.replace(/\r\n/g, "\n");
var utftext = "";
for (var n = 0; n < string.length; n++) {
var c = string.charCodeAt(n);
if (c < 128) {
utftext += String.fromCharCode(c);
} else if ((c > 127) && (c < 2048)) {
utftext += String.fromCharCode((c >> 6) | 192);
utftext += String.fromCharCode((c & 63) | 128);
} else {
utftext += String.fromCharCode((c >> 12) | 224);
utftext += String.fromCharCode(((c >> 6) & 63) | 128);
utftext += String.fromCharCode((c & 63) | 128);
}
}
return utftext;
}
</script>
</body>
</html>