http请求详解(http深入浅出http请求)

HTTP(HyperText Transfer Protocol)是一套计算机通过网络进行通信的规则。计算机专家设计出HTTP,使HTTP客户(如Web浏览器)能够从HTTP服务器(Web服务器)请求信息和服务,HTTP目前协议的版本是1.1.HTTP是一种无状态的协议,无状态是指Web浏览器和Web服务器之间不需要建立持久的连接,这意味着当一个客户端向服务器端发出请求,然后Web服务器返回响应(response),连接就被关闭了,在服务器端不保留连接的有关信息.HTTP遵循请求(Request)/应答(Response)模型。Web浏览器向Web服务器发送请求,Web服务器处理请求并返回适当的应答。所有HTTP连接都被构造成一套请求和应答。

HTTP请求方法

HTTP使用内容类型,是指Web服务器向Web浏览器返回的文件都有与之相关的类型。所有这些类型在MIME Internet邮件协议上模型化,即Web服务器告诉Web浏览器该文件所具有的种类,是HTML文档、GIF格式图像、声音文件还是独立的应用程序。大多数Web浏览器都拥有一系列的可配置的辅助应用程序,它们告诉浏览器应该如何处理Web服务器发送过来的各种内容类型。

HTTP通信机制是在一次完整的HTTP通信过程中,Web浏览器与Web服务器之间将完成下列7个步骤:

(1) 建立TCP连接

在HTTP工作开始之前,Web浏览器首先要通过网络与Web服务器建立连接,该连接是通过TCP来完成的,该协议与IP协议共同构建Internet,即著名的TCP/IP协议族,因此Internet又被称作是TCP/IP网络。HTTP是比TCP更高层次的应用层协议,根据规则,只有低层协议建立之后才能,才能进行更层协议的连接,因此,首先要建立TCP连接,一般TCP连接的端口号是80

(2) Web浏览器向Web服务器发送请求命令

一旦建立了TCP连接,Web浏览器就会向Web服务器发送请求命令

例如:GET/sample/hello.jsp HTTP/1.1

(3) Web浏览器发送请求头信息

浏览器发送其请求命令之后,还要以头信息的形式向Web服务器发送一些别的信息,之后浏览器发送了一空白行来通知服务器,它已经结束了该头信息的发送。

(4) Web服务器应答

客户机向服务器发出请求后,服务器会客户机回送应答,

HTTP/1.1 200 OK

应答的第一部分是协议的版本号和应答状态码

(5) Web服务器发送应答头信息

正如客户端会随同请求发送关于自身的信息一样,服务器也会随同应答向用户发送关于它自己的数据及被请求的文档。

(6) Web服务器向浏览器发送数据

Web服务器向浏览器发送头信息后,它会发送一个空白行来表示头信息的发送到此为结束,接着,它就以Content-Type应答头信息所描述的格式发送用户所请求的实际数据

(7) Web服务器关闭TCP连接

一般情况下,一旦Web服务器向浏览器发送了请求数据,它就要关闭TCP连接,然后如果浏览器或者服务器在其头信息加入了这行代码

Connection:keep-alive

TCP连接在发送后将仍然保持打开状态,于是,浏览器可以继续通过相同的连接发送请求。保持连接节省了为每个请求建立新连接所需的时间,还节约了网络带宽。

HTTP请求格式

当浏览器向Web服务器发出请求时,它向服务器传递了一个数据块,也就是请求信息,HTTP请求信息由3部分组成:

l 请求方法URI协议/版本

l 请求头(Request Header)

l 请求正文

下面是一个HTTP请求的例子:

GET/sample.jspHTTP/1.1

Accept:image/gif.image/jpeg,*/*

Accept-Language:zh-cn

Connection:Keep-Alive

Host:localhost

User-Agent:Mozila/4.0(compatible;MSIE5.01;Window NT5.0)

Accept-Encoding:gzip,deflate

username=jinqiao&password=1234

(1) 请求方法URI协议/版本

请求的第一行是“方法URL议/版本”:GET/sample.jsp HTTP/1.1

以上代码中“GET”代表请求方法,“/sample.jsp”表示URI,“HTTP/1.1代表协议和协议的版本。

根据HTTP标准,HTTP请求可以使用多种请求方法。例如:HTTP1.1支持7种请求方法:GET、POST、HEAD、OPTIONS、PUT、DELETE和TARCE。在Internet应用中,最常用的方法是GET和POST。

URL完整地指定了要访问的网络资源,通常只要给出相对于服务器的根目录的相对目录即可,因此总是以“/”开头,最后,协议版本声明了通信过程中使用HTTP的版本。

(2) 请求头(Request Header)

请求头包含许多有关的客户端环境和请求正文的有用信息。例如,请求头可以声明浏览器所用的语言,请求正文的长度等。

Accept:image/gif.image/jpeg.*/*

Accept-Language:zh-cn

Connection:Keep-Alive

Host:localhost

User-Agent:Mozila/4.0(compatible:MSIE5.01:Windows NT5.0)

Accept-Encoding:gzip,deflate.

(3) 请求正文

请求头和请求正文之间是一个空行,这个行非常重要,它表示请求头已经结束,接下来的是请求正文。请求正文中可以包含客户提交的查询字符串信息:

username=jinqiao&password=1234

在以上的例子的HTTP请求中,请求的正文只有一行内容。当然,在实际应用中,HTTP请求正文可以包含更多的内容。

HTTP请求方法我这里只讨论GET方法与POST方法

l GET方法

GET方法是默认的HTTP请求方法,我们日常用GET方法来提交表单数据,然而用GET方法提交的表单数据只经过了简单的编码,同时它将作为URL的一部分向Web服务器发送,因此,如果使用GET方法来提交表单数据就存在着安全隐患上。例如

Http://127.0.0.1/login.jsp?Name=zhangshi&Age=30&Submit=%cc%E+%BD%BB

从上面的URL请求中,很容易就可以辩认出表单提交的内容。(?之后的内容)另外由于GET方法提交的数据是作为URL请求的一部分所以提交的数据量不能太大

l POST方法

POST方法是GET方法的一个替代方法,它主要是向Web服务器提交表单数据,尤其是大批量的数据。POST方法克服了GET方法的一些缺点。通过POST方法提交表单数据时,数据不是作为URL请求的一部分而是作为标准数据传送给Web服务器,这就克服了GET方法中的信息无法保密和数据量太小的缺点。因此,出于安全的考虑以及对用户隐私的尊重,通常表单提交时采用POST方法。

从编程的角度来讲,如果用户通过GET方法提交数据,则数据存放在QUERY_STRING环境变量中,而POST方法提交的数据则可以从标准输入流中获取。

HTTP应答与HTTP请求相似,HTTP响应也由3个部分构成,分别是:

l 协议状态版本代码描述

l 响应头(Response Header)

l 响应正文

下面是一个HTTP响应的例子:

HTTP/1.1 200 OK

Server:Apache Tomcat/5.0.12

Date:Mon,6Oct2003 13:23:42 GMT

Content-Length:112

HTTP响应示例<title></p> <p></head></p> <p><body></p> <p>Hello HTTP!</p> <p></body></p> <p></html></p> <p>协议状态代码描述HTTP响应的第一行类似于HTTP请求的第一行,它表示通信所用的协议是HTTP1.1服务器已经成功的处理了客户端发出的请求(200表示成功):</p> <p>HTTP/1.1 200 OK</p> <p>响应头(Response Header)响应头也和请求头一样包含许多有用的信息,例如服务器类型、日期时间、内容类型和长度等:</p> <p>Server:Apache Tomcat/5.0.12</p> <p>Date:Mon,6Oct2003 13:13:33 GMT</p> <p>Content-Type:text/html</p> <p>Last-Moified:Mon,6 Oct 2003 13:23:42 GMT</p> <p>Content-Length:112</p> <p>响应正文响应正文就是服务器返回的HTML页面:</p> <p><html></p> <p><head></p> <p><title>HTTP响应示例<title></p> <p></head></p> <p><body></p> <p>Hello HTTP!</p> <p></body></p> <p></html></p> <p>响应头和正文之间也必须用空行分隔。</p> <p><strong>HTTP应答码</strong></p> <p>HTTP应答码也称为状态码,它反映了Web服务器处理HTTP请求状态。HTTP应答码由3位数字构成,其中首位数字定义了应答码的类型:</p> <p>1XX-信息类(Information),表示收到Web浏览器请求,正在进一步的处理中</p> <p>2XX-成功类(Successful),表示用户请求被正确接收,理解和处理例如:200 OK</p> <p>3XX-重定向类(Redirection),表示请求没有成功,客户必须采取进一步的动作。</p> <p>4XX-客户端错误(Client Error),表示客户端提交的请求有错误 例如:404 NOT</p> <p>Found,意味着请求中所引用的文档不存在。</p> <p>5XX-服务器错误(Server Error)表示服务器不能完成对请求的处理:如 500</p> <p>对于我们Web开发人员来说掌握HTTP应答码有助于提高Web应用程序调试的效率和准确性。</p> <p><strong>安全连接</strong></p> <p>Web应用最常见的用途之一是电子商务,可以利用Web服务器端程序使人们能够网络购物,需要指出一点是,缺省情况下,通过Internet发送信息是不安全的,如果某人碰巧截获了你发给朋友的一则消息,他就能打开它,假想在里面有你的信用卡号码,这会有多么糟糕,幸运的是,很多Web服务器以及Web浏览器都有创立安全连接的能力,这样它们就可以安全的通信了。</p> <p>通过Internet提供安全连接最常见的标准是安全套接层(Secure Sockets layer,SSl)协议。SSL协议是一个应用层协议(和HTTP一样),用于安全方式在Web上交换数据,SSL使用公开密钥编码系统。从本质讲,这意味着业务中每一方都拥有一个公开的和一个私有的密钥。当一方使用另一方公开密钥进行编码时,只有拥有匹配密钥的人才能对其解码。简单来讲,公开密钥编码提供了一种用于在两方之间交换数据的安全方法,SSL连接建立之后,客户和服务器都交换公开密钥,并在进行业务联系之前进行验证,一旦双方的密钥都通过验证,就可以安全地交换数据。</p> <ul> <li contentScore="0"> <p>GET</p> </li> <li contentScore="27"> <p>通过请求URI得到资源</p> </li> <li contentScore="0"> <p>POST,</p> </li> <li contentScore="24"> <p>用于添加新的内容</p> </li> <li contentScore="0"> <p>PUT</p> </li> <li contentScore="24"> <p>用于修改某个内容</p> </li> <li contentScore="0"> <p>DELETE,</p> </li> <li contentScore="18"> <p>删除某个内容</p> </li> <li contentScore="0"> <p>CONNECT,</p> </li> <li contentScore="39"> <p>用于代理进行传输,如使用SSL</p> </li> <li contentScore="0"> <p>OPTIONS</p> </li> <li contentScore="30"> <p>询问可以执行哪些方法</p> </li> <li contentScore="0"> <p>PATCH,</p> </li> <li contentScore="18"> <p>部分文档更改</p> </li> <li contentScore="17"> <p>PROPFIND, (wedav)</p> </li> <li contentScore="12"> <p>查看属性</p> </li> <li contentScore="18"> <p>PROPPATCH, (wedav)</p> </li> <li contentScore="12"> <p>设置属性</p> </li> <li contentScore="14"> <p>MKCOL, (wedav)</p> </li> <li contentScore="27"> <p>创建集合(文件夹)</p> </li> <li contentScore="13"> <p>COPY, (wedav)</p> </li> <li contentScore="0"> <p>拷贝</p> </li> <li contentScore="13"> <p>MOVE, (wedav)</p> </li> <li contentScore="0"> <p>移动</p> </li> <li contentScore="13"> <p>LOCK, (wedav)</p> </li> <li contentScore="0"> <p>加锁</p> </li> <li contentScore="14"> <p>UNLOCK (wedav)</p> </li> <li contentScore="0"> <p>解锁</p> </li> <li contentScore="0"> <p>TRACE</p> </li> <li contentScore="27"> <p>用于远程诊断服务器</p> </li> <li contentScore="0"> <p>HEAD</p> </li> <li contentScore="105"> <p>类似于GET, 但是不返回body信息,用于检查对象是否存在,以及得到对象的元数据</p> </li> </ul> <p>apache2中,可使用Limit,LimitExcept进行访问控制的方法包括:GET, POST, PUT, DELETE, CONNECT,OPTIONS, PATCH, PROPFIND, PROPPATCH, MKCOL, COPY, MOVE, LOCK, 和 UNLOCK.</p> <p>其中, HEAD GET POST OPTIONS PROPFIND是和读取相关的方法,MKCOL PUT DELETE LOCK UNLOCK COPY MOVE PROPPATCH是和修改相关的方法</p> <div> <a href="https://?bstudy" rel="nofollow noopener" target="_blank"><strong></strong></a></p> <p><a rel="author" style="display:none" href="https://hooper.eu.org/?it/587.html">https://hooper.eu.org/it/587.html</a> </div> </div> </div> <div class="post-end-tools"> <div class="post-copyright"> 版权声明:<br> 作者:Joker 链接:<a href="https://456787.xyz/archives/1042">https://456787.xyz/archives/1042</a><br> 文章版权归作者所有,转载请注明出处。 </div> <div class="post-end-dividing"> THE END </div> <div class="post-tags"> </div> <div class="post-end-tool-btns"> <div class="post-share-btn post-end-tool-btn-item" onclick="showplane('.post-share-btn','#share-plane',event)"> <svg class="icon" viewBox="0 0 1024 1024"> <path d="M793.472 102.208c-70.592 0-128 57.408-128 128 0 7.744 0.96 15.232 2.304 22.656L273.6 422.976C250.368 399.04 217.92 384 181.952 384c-70.592 0-128 57.408-128 128 0 70.592 57.408 128 128 128 22.912 0 44.096-6.592 62.72-17.152l289.088 180.992c-4.672 13.312-7.744 27.392-7.744 42.24 0 70.592 57.408 128 128 128s128-57.408 128-128-57.408-128-128-128c-32.512 0-61.888 12.544-84.48 32.64L291.712 576.832C302.976 557.696 309.952 535.744 309.952 512c0-11.456-1.984-22.336-4.8-32.896l389.76-168.32c23.488 28.672 58.752 47.36 98.624 47.36 70.592 0 128-57.408 128-128S864.064 102.208 793.472 102.208zM117.952 512c0-35.264 28.736-64 64-64s64 28.736 64 64-28.736 64-64 64S117.952 547.264 117.952 512zM654.016 782.144c35.328 0 64 28.672 64 64s-28.672 64-64 64-64-28.672-64-64S618.688 782.144 654.016 782.144zM793.472 294.208c-35.328 0-64-28.736-64-64s28.672-64 64-64 64 28.736 64 64S828.8 294.208 793.472 294.208z"></path> </svg> 分享 </div> <div class="post-qrcode-btn post-end-tool-btn-item" onclick="showplane('.post-qrcode-btn','#qrcode-plane',event)"> <svg t="1599190411371" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="2306" width="200" height="200"> <path d="M742.8 121.5c-2.3 0.3-4.7 0.1-7 0.1-38 0-76-0.1-114 0.1-11 0-21.9 1.4-32.4 5.1-18.6 6.5-29.8 19.5-34.4 38.4-1.7 7-2.4 14.1-2.4 21.3 0 67.2-0.1 134.3 0.1 201.5 0 13.8 0.9 27.6 6.2 40.8 6.9 17.1 19.7 27.2 37.3 31.7 6.3 1.6 12.8 2.2 19.3 2.2h218c8.3 0 16.6-0.7 24.8-2.3 24.4-4.5 40.4-20.7 44.9-45 0.4-2.2-0.4-5.2 2.9-6.2v-232c-0.4-0.4-0.5-0.9-0.5-1.5-1.5-4.8-1.7-9.8-3.3-14.7-7.1-21-21.7-33.4-42.8-38.8-6.4-1.6-12.8-2.4-19.5-2.1-1.3 0.1-3 1-3.9-0.9h-89c-0.4 2.6-2.7 2.1-4.3 2.3z m98.7 40.7c4 0 8.1 0.9 11.9 2.1 6.9 2.2 10.7 7.6 10.7 15.1 0 74.8 0.1 149.6-0.1 224.4 0 11.2-8.6 18-21.1 18.1-38.2 0.3-76.3 0.1-114.5 0.1h-113c-4.5 0-8.6-1.3-12.7-2.7-8.5-3.1-9.6-10.5-9.7-17.9-0.2-37.5-0.1-75-0.1-112.5V183.4c0-6.5 1.5-12.5 6.9-17 4.6-3.8 10.3-4.3 15.6-4.3 75.4-0.1 150.8 0 226.1 0.1z" p-id="2307"></path> <path d="M742 120c-39.5 0.1-79 0.1-118.4 0.1-9.4 0-18.6 1-27.7 3.1-11.6 2.7-22.1 7.7-30 16.7-10.6 12.1-14.8 26.9-14.8 42.6-0.2 69.6-0.2 139.3 0 208.9 0 9.1 0.7 18.3 2.8 27.2 2.8 11.7 7.6 22.5 16.7 30.5 11.7 10.3 25.9 15 41.5 15 74.1 0.1 148.3 0.1 222.4 0 9.3 0 18.7-0.5 27.7-3 19-5.4 33.6-15.9 40-35.8 1.7-5.3 1.8-10.9 3.8-16.1-3.2 1-2.5 4-2.9 6.2-4.5 24.4-20.5 40.5-44.9 45-8.2 1.5-16.5 2.3-24.8 2.3h-218c-6.5 0-13-0.6-19.3-2.2-17.5-4.5-30.4-14.6-37.3-31.7-5.3-13.1-6.2-27-6.2-40.8-0.2-67.2-0.1-134.3-0.1-201.5 0-7.2 0.7-14.3 2.4-21.3 4.6-18.9 15.8-31.9 34.4-38.4 10.5-3.7 21.4-5 32.4-5.1 38-0.2 76-0.1 114-0.1 2.3 0 4.7 0.2 7-0.1 1.7-0.2 3.9 0.2 4.2-2.4-1.2 2.1-3.2 0.9-4.9 0.9zM120.6 410.3c2 12.5 5.5 24.4 14.3 34 11.5 12.7 26.5 18 43 18.1 75.1 0.3 150.2 0.3 225.4 0 9.4 0 18.9-1 28.1-3.9 24.5-7.7 39.1-27.3 39.1-53.1 0-74 0-147.9 0.1-221.9 0-6.4-0.8-12.6-2.4-18.8-5.8-22.4-24.5-39.1-47.5-42.3-4.1-0.6-8.2-1.1-12.4-1.1-2 0-4.5 0.6-5.2-2.4h-89c-1.3 2.1-3.3 0.9-4.9 0.9-41.1 0.1-82.2-0.2-123.3 0.2-14.8 0.1-29.2 2.6-42.2 10.7-12.5 7.8-19.8 19.1-23.7 33-0.8 2.7-0.2 5.7-1.9 8.2v233c2.9 0.9 2.2 3.5 2.5 5.4z m39.5-231c0-8.1 6.2-14.6 14.5-16.3 4.4-0.9 8.8-1 13.2-1h219c4.3 0 8.4 0.8 12.4 2 7.5 2.4 10.8 6.9 10.8 14.6v225.5c0 8.2-3.8 13.3-11.6 15.9-4 1.3-8.1 2.1-12.4 2-37.2-0.1-74.3-0.1-111.5-0.1-37.7 0-75.3 0.1-113-0.1-6.3 0-12.6-0.9-17.3-6.1-2.7-3-4.1-6.3-4.1-10.1-0.1-75.3-0.1-150.8 0-226.3z" p-id="2308"></path> <path d="M119 407.5c0.1 8.9 2.6 17.3 6.4 25.1 10.4 21.4 28.9 31 51.6 31.2 74.5 0.6 149 0.2 223.4 0.2 9.3 0 18.6-0.8 27.7-3 27.1-6.7 43.6-26.4 43.8-54.4 0.5-73.8 0.2-147.6 0.2-221.4 0-4.9 0-9.8-0.9-14.7-3-16.2-10.7-29.4-24.2-39-11-7.8-23.5-11-36.9-11.4-2.3-0.1-4.9 1.2-6.9-0.9 0.7 3 3.3 2.4 5.2 2.4 4.2 0 8.3 0.6 12.4 1.1 23 3.2 41.7 19.9 47.5 42.3 1.6 6.2 2.4 12.4 2.4 18.8-0.1 74 0 147.9-0.1 221.9 0 25.7-14.6 45.3-39.1 53.1-9.2 2.9-18.7 3.9-28.1 3.9-75.1 0.2-150.2 0.3-225.4 0-16.5-0.1-31.4-5.4-43-18.1-8.8-9.7-12.3-21.5-14.3-34-0.3-1.9 0.4-4.6-2.6-5.2 1.3 0.1 0.9 1.3 0.9 2.1zM191.8 882.7c2.1-0.3 4.3-0.1 6.5-0.1h206c8.4 0 16.6-1 24.7-3.1 25.5-6.6 41.4-26.9 41.5-53.2 0.1-25.3 0-50.7 0-76v-148c0-32.3-21.4-56.2-53.6-59.7-11.4-1.2-22.9-1.7-34.4-2-34.5-0.7-69 0.5-103.4 1.3-33 0.8-66 0.2-98.9 0.7-11.5 0.2-22.6 2.7-32.7 8.1-13.6 7.2-21.9 18.5-25.7 33.4-0.7 2.8-0.1 6.5-3.7 8v234c2 5.5 2.2 11.4 3.9 17.1 5.9 20.7 19.4 33.3 39.8 38.9 6.5 1.8 13.2 2.3 19.9 2.1 1.4 0 3.3-1.1 4.4 0.9h2c0.2-2.3 2.1-2.2 3.7-2.4z m-11.4-40.6c-12.2 0-20.7-6.6-20.6-20.5 0.4-73.3 0.2-146.6 0.1-220 0-11.8 7-18.1 18.3-18.5 74.6-2.4 149.1-0.5 223.7-0.8 6.4 0 13.4-0.4 19.6 3 5.4 3 8.5 7.2 8.5 13.7-0.1 37.5 0 75 0 112.5 0 37.2-0.2 74.3 0.1 111.5 0.1 12.1-7.8 17.6-18.7 19.3-8.6 1.3-17 0-25.5-0.1-68.5-0.2-137-0.1-205.5-0.1z" p-id="2309"></path> <path d="M193.5 884.2c67.8-0.1 135.7-0.1 203.5 0 9.4 0 18.7-0.2 28-2.1 12.5-2.5 23.8-7.8 32.5-17.1 9.7-10.4 14.5-23.4 14.5-37.6 0.2-74.3 0.1-148.7 0.1-223 0-6.3-0.4-12.4-2-18.5-5.3-19.9-17.3-33.7-36.7-41.3-13.3-5.2-27.3-5-41-5.3-23.1-0.5-46.2-0.9-69.3 0.5-19 1.2-38.2 0.3-57.3 1-27.6 0.9-55.3 0.3-83 0.2-6.4 0-12.7 0.6-19 2-18.4 4.2-32.5 13.8-40.6 31.3-2.6 5.7-2.8 12-5.2 17.7 3.7-1.5 3-5.2 3.7-8 3.8-14.9 12.2-26.2 25.7-33.4 10.2-5.4 21.2-7.9 32.7-8.1 33-0.5 65.9 0.1 98.9-0.7 34.5-0.8 68.9-2 103.4-1.3 11.5 0.2 23 0.7 34.4 2 32.2 3.5 53.5 27.4 53.6 59.7v148c0 25.3 0.1 50.7 0 76-0.2 26.4-16 46.6-41.5 53.2-8.1 2.1-16.3 3.1-24.7 3.1h-206c-2.2 0-4.3-0.1-6.5 0.1-1.6 0.2-3.5 0-3.7 2.4 1.5-1.9 3.7-0.8 5.5-0.8z" p-id="2310"></path> <path d="M143.6 130.9c13-8 27.4-10.6 42.2-10.7 41.1-0.4 82.2-0.1 123.3-0.2 1.6 0 3.6 1.2 4.9-0.9-1.7 1-3.6 0.5-5.4 0.5-44.8 0.3-89.6-0.8-134.4 0.6-18.9 0.6-34.9 8.1-46.5 23.6-6.3 8.4-9.1 18-9.7 28.3 1.8-2.4 1.2-5.4 1.9-8.2 4-13.9 11.2-25.2 23.7-33zM840 120c6.6-0.3 13.1 0.5 19.5 2.1 21 5.4 35.7 17.8 42.8 38.8 1.6 4.8 1.8 9.9 3.3 14.7v-0.4c0.4-28.1-24.4-53.2-52.7-55.3-5.6-0.4-11.2 0.5-16.8-0.9 0.8 2.1 2.6 1.1 3.9 1zM181.6 884.2c-6.7 0.2-13.4-0.3-19.9-2.1-20.4-5.6-33.9-18.2-39.8-38.9-1.6-5.7-1.8-11.6-3.9-17.1 1.1 5.3 0.8 10.8 2.1 16.1 5.5 22.8 25.5 40.6 48.6 42 5.8 0.4 11.6-0.6 17.3 0.8-1.1-1.9-3-0.9-4.4-0.8z" p-id="2311"></path> <path d="M608.4 667.2c-12.3 0.2-20.4 8.3-20.4 20V859c0 12.3 8.5 20.1 20.8 19.9 12.9-0.2 21-6.9 21.1-19.7 0.2-57.4 0.1-114.9 0-172.3 0-12-8.4-19.9-21.5-19.7zM861.4 667.4c-9.9-1.8-23.3 4.9-23.3 18.2-0.2 29.2 0 58.3 0 87.5v87c0 1.6-0.1 3.4 0.4 4.9 3.3 9.4 14.4 16.2 23.5 14 11.4-2.7 17.9-7.2 18-21.4 0.2-55.5 0.1-111 0.1-166.5-0.1-14.4-4.6-21.1-18.7-23.7zM768.7 727.3c-2.6-9.4-13-16.8-22.1-15.1-12.4 2.4-19.4 6.6-19.5 20.9-0.3 41.1-0.1 82.3-0.1 123.4 0 13.8 5.7 20 17.5 22.2 11.1 2.1 24.4-4.5 24.5-19.1v-63.5-64.5c0-1.3 0-2.9-0.3-4.3zM741 544.8c-8.7 1.9-14 10.2-14 19.8V653c0 13.1 4 21 18.1 23.7 10.3 1.9 24-5.2 23.9-18.5-0.1-15.8 0-31.6 0-47.5 0-15.3-0.2-30.6 0-46 0.3-19-14.6-22.8-28-19.9zM622 547.4c-4.9-3.4-10.1-3.3-15.4-3.3-10.5 0-18.5 7.9-18.5 18.3v26c0 9-0.1 18 0 27 0.1 4.6 1.3 8.7 4.9 12.3 5.2 5.2 11.2 6.7 18.2 6.5 9.9-0.3 18.8-8.9 18.8-18.7 0.1-17.7 0.2-35.3-0.1-53 0-6.1-2.4-11.3-7.9-15.1zM878.3 555.9c-2.2-6.2-9.8-11.8-17.9-12-14.3-0.5-23.6 7.9-22.5 22.8 0.5 7 0.1 14 0.1 21v25c0 1.5 0 3 0.4 4.4 3.2 10.3 12.9 15.5 23.9 14 11-1.6 17.4-8.4 17.6-19.7 0.3-15.8 0.1-31.7 0.1-47.5 0-2.9-0.8-5.5-1.7-8zM352 257.8c-1.9-7.3-7.9-12.7-15.4-13.7-1.3-0.2-2.7-0.4-4-0.4-0.6 0-1.5 0.2-1.7-0.8h-28.8c-0.4 0.7-1.1 0.3-1.6 0.3-13.3 0-26.6-0.1-39.9 0.1-4.8 0-9.5 0.9-13.7 3.5-4.1 2.5-6.4 6.2-7.7 10.7-0.2 0.9 0 1.9-0.6 2.6v75.5c1 0.2 0.7 1.1 0.8 1.7 0.7 4.1 1.8 7.9 4.6 11 3.7 4.1 8.6 5.8 13.9 5.9 24.3 0.1 48.7 0.1 73 0 3.1 0 6.1-0.3 9.1-1.3 7.9-2.5 12.7-8.9 12.7-17.2v-71.9c0.1-2-0.2-4-0.7-6zM785.5 250.1c-1.9-7.3-7.9-12.7-15.4-13.7-1.3-0.2-2.7-0.4-4-0.4-0.6 0-1.5 0.2-1.7-0.8h-28.8c-0.4 0.7-1.1 0.3-1.6 0.3-13.3 0-26.6-0.1-39.9 0.1-4.8 0-9.5 0.9-13.7 3.5-4.1 2.5-6.4 6.2-7.7 10.7-0.2 0.9 0 1.9-0.6 2.6v75.5c1 0.2 0.7 1.1 0.8 1.7 0.7 4.1 1.8 7.9 4.6 11 3.7 4.1 8.6 5.8 13.9 5.9 24.3 0.1 48.7 0.1 73 0 3.1 0 6.1-0.3 9.1-1.3 7.9-2.5 12.7-8.9 12.7-17.2v-71.9c0.2-2-0.2-4.1-0.7-6zM351.4 676.6c-1.9-7.3-7.9-12.7-15.4-13.7-1.3-0.2-2.7-0.4-4-0.4-0.6 0-1.5 0.2-1.7-0.8h-28.8c-0.4 0.7-1.1 0.3-1.6 0.3-13.3 0-26.6-0.1-39.9 0.1-4.8 0-9.5 0.9-13.7 3.5-4.1 2.5-6.4 6.2-7.7 10.7-0.2 0.9 0 1.9-0.6 2.6v75.5c1 0.2 0.7 1.1 0.8 1.7 0.7 4.1 1.8 7.9 4.6 11 3.7 4.1 8.6 5.8 13.9 5.9 24.3 0.1 48.7 0.1 73 0 3.1 0 6.1-0.3 9.1-1.3 7.9-2.5 12.7-8.9 12.7-17.2v-71.9c0.1-2-0.2-4-0.7-6z" p-id="2312"></path> </svg> 二维码 </div> <div class="post-reward-btn post-end-tool-btn-item" onclick="showplane('.post-reward-btn','#reward-plane',event)"> <?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg t="1611304985070" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="2030" xmlns:xlink="http://www.w3.org/1999/xlink" width="200" height="200"><defs><style type="text/css"></style></defs><path d="M511.413646 65.750493c-247.232824 0-447.682136 200.421682-447.682136 447.682136S264.180821 961.115787 511.413646 961.115787s447.682136-200.421682 447.682136-447.682136S758.645446 65.750493 511.413646 65.750493zM511.413646 905.155265c-216.298278 0-391.721613-175.396729-391.721613-391.721613s175.423335-391.721613 391.721613-391.721613c216.353536 0 391.721613 175.396729 391.721613 391.721613S727.766159 905.155265 511.413646 905.155265z" p-id="2031"></path><path d="M526.387685 472.448192c-10.92891 10.956539-28.635177 10.956539-39.569204 0L328.557014 314.186725c-10.92891-10.956539-10.92891-28.640294 0-39.569204l0 0c10.92891-10.956539 28.635177-10.956539 39.569204 0l158.261467 158.261467C537.316595 443.813015 537.316595 461.519282 526.387685 472.448192L526.387685 472.448192z" p-id="2032"></path><path d="M496.437559 472.448192c-10.92891-10.92891-10.92891-28.635177 0-39.569204L654.699026 274.617521c10.93505-10.92891 28.640294-10.92891 39.569204 0l0 0c10.92891 10.92891 10.92891 28.635177 0 39.569204L536.006763 472.448192C525.072737 483.377102 507.36647 483.377102 496.437559 472.448192L496.437559 472.448192z" p-id="2033"></path><path d="M735.254713 485.453391c0 15.467273-12.512988 27.980261-27.980261 27.980261l-391.721613 0c-15.468296 0-27.980261-12.512988-27.980261-27.980261l0 0c0-15.467273 12.511965-27.980261 27.980261-27.980261l391.721613 0C722.740702 457.473129 735.254713 469.986117 735.254713 485.453391L735.254713 485.453391z" p-id="2034"></path><path d="M735.254713 597.373413c0 15.467273-12.512988 27.980261-27.980261 27.980261l-391.721613 0c-15.468296 0-27.980261-12.512988-27.980261-27.980261l0 0c0-15.467273 12.511965-27.980261 27.980261-27.980261l391.721613 0C722.740702 569.393151 735.254713 581.90614 735.254713 597.373413L735.254713 597.373413z" p-id="2035"></path><path d="M539.392884 765.254981c0 15.467273-12.512988 27.980261-27.980261 27.980261l0 0c-15.468296 0-27.980261-12.512988-27.980261-27.980261L483.432361 485.453391c0-15.467273 12.511965-27.980261 27.980261-27.980261l0 0c15.467273 0 27.980261 12.512988 27.980261 27.980261L539.392884 765.254981z" p-id="2036"></path></svg> 打赏 </div> <div id="share-plane" class="post-pop-plane"> <div class="post-share-list"> <a href="https://connect.qq.com/widget/shareqq/index.html?url=https%3A%2F%2F456787.xyz%2Farchives%2F1042&title=http%E8%AF%B7%E6%B1%82%E8%AF%A6%E8%A7%A3%28http%E6%B7%B1%E5%85%A5%E6%B5%85%E5%87%BAhttp%E8%AF%B7%E6%B1%82%29&source=%E5%B0%8F%E5%B0%8F%E4%B8%91%E5%8D%9A%E5%AE%A2&desc=%E4%B8%80%E4%B8%AA%E6%97%A0%E5%90%8D%E6%8A%80%E6%9C%AF%E5%8D%9A%E5%AE%A2%EF%BC%8C%E8%AE%B0%E5%BD%95%E4%BB%A3%E7%A0%81%EF%BC%8C%E5%88%86%E4%BA%AB%E5%BF%83%E5%BE%97&pics=&summary=HTTP%28HyperText+Transfer+Protocol%29%E6%98%AF%E4%B8%80%E5%A5%97%E8%AE%A1%E7%AE%97%E6%9C%BA%E9%80%9A%E8%BF%87%E7%BD%91%E7%BB%9C%E8%BF%9B%E8%A1%8C%E9%80%9A%E4%BF%A1%E7%9A%84%E8%A7%84%E5%88%99%E3%80%82%E8%AE%A1%E7%AE%97%E6%9C%BA%E4%B8%93%E5%AE%B6%E8%AE%BE%E8%AE%A1%E5%87%BAHTTP%EF%BC%8C%E4%BD%BFHTTP%E5%AE%A2%E6%88%B7%EF%BC%88%E5%A6%82Web%E6%B5%8F%E8%A7%88%E5%99%A8%EF%BC%89%E8%83%BD%E5%A4%9F%E4%BB%8EHTTP%E6%9C%8D%E5%8A%A1%E5%99%A8%28Web%E6%9C%8D%E5%8A%A1%E5%99%A8%29%E8%AF%B7%E6%B1%82%E4%BF%A1%E6%81%AF%E5%92%8C%E6%9C%8D%E5%8A%A1%EF%BC%8CHTTP%E7%9B%AE%E5%89%8D%E5%8D%8F%E8%AE%AE%E7%9A%84%E7%89%88%E6%9C%AC%E6%98%AF1.1.HTTP%E6%98%AF%E4%B8%80%E7%A7%8D%E6%97%A0%E7%8A%B6%E2%80%A6" target="_blank"> <svg t="1599120943195" name="share-qq" class="share-icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="3139" width="200" height="200"> <path d="M511.09761 957.257c-80.159 0-153.737-25.019-201.11-62.386-24.057 6.702-54.831 17.489-74.252 30.864-16.617 11.439-14.546 23.106-11.55 27.816 13.15 20.689 225.583 13.211 286.912 6.767v-3.061z" fill="#FAAD08" p-id="3140"></path> <path d="M496.65061 957.257c80.157 0 153.737-25.019 201.11-62.386 24.057 6.702 54.83 17.489 74.253 30.864 16.616 11.439 14.543 23.106 11.55 27.816-13.15 20.689-225.584 13.211-286.914 6.767v-3.061z" fill="#FAAD08" p-id="3141"></path> <path d="M497.12861 474.524c131.934-0.876 237.669-25.783 273.497-35.34 8.541-2.28 13.11-6.364 13.11-6.364 0.03-1.172 0.542-20.952 0.542-31.155C784.27761 229.833 701.12561 57.173 496.64061 57.162 292.15661 57.173 209.00061 229.832 209.00061 401.665c0 10.203 0.516 29.983 0.547 31.155 0 0 3.717 3.821 10.529 5.67 33.078 8.98 140.803 35.139 276.08 36.034h0.972z" fill="#000000" p-id="3142"></path> <path d="M860.28261 619.782c-8.12-26.086-19.204-56.506-30.427-85.72 0 0-6.456-0.795-9.718 0.148-100.71 29.205-222.773 47.818-315.792 46.695h-0.962C410.88561 582.017 289.65061 563.617 189.27961 534.698 185.44461 533.595 177.87261 534.063 177.87261 534.063 166.64961 563.276 155.56661 593.696 147.44761 619.782 108.72961 744.168 121.27261 795.644 130.82461 796.798c20.496 2.474 79.78-93.637 79.78-93.637 0 97.66 88.324 247.617 290.576 248.996a718.01 718.01 0 0 1 5.367 0C708.80161 950.778 797.12261 800.822 797.12261 703.162c0 0 59.284 96.111 79.783 93.637 9.55-1.154 22.093-52.63-16.623-177.017" fill="#000000" p-id="3143"></path> <path d="M434.38261 316.917c-27.9 1.24-51.745-30.106-53.24-69.956-1.518-39.877 19.858-73.207 47.764-74.454 27.875-1.224 51.703 30.109 53.218 69.974 1.527 39.877-19.853 73.2-47.742 74.436m206.67-69.956c-1.494 39.85-25.34 71.194-53.24 69.956-27.888-1.238-49.269-34.559-47.742-74.435 1.513-39.868 25.341-71.201 53.216-69.974 27.909 1.247 49.285 34.576 47.767 74.453" fill="#FFFFFF" p-id="3144"></path> <path d="M683.94261 368.627c-7.323-17.609-81.062-37.227-172.353-37.227h-0.98c-91.29 0-165.031 19.618-172.352 37.227a6.244 6.244 0 0 0-0.535 2.505c0 1.269 0.393 2.414 1.006 3.386 6.168 9.765 88.054 58.018 171.882 58.018h0.98c83.827 0 165.71-48.25 171.881-58.016a6.352 6.352 0 0 0 1.002-3.395c0-0.897-0.2-1.736-0.531-2.498" fill="#FAAD08" p-id="3145"></path> <path d="M467.63161 256.377c1.26 15.886-7.377 30-19.266 31.542-11.907 1.544-22.569-10.083-23.836-25.978-1.243-15.895 7.381-30.008 19.25-31.538 11.927-1.549 22.607 10.088 23.852 25.974m73.097 7.935c2.533-4.118 19.827-25.77 55.62-17.886 9.401 2.07 13.75 5.116 14.668 6.316 1.355 1.77 1.726 4.29 0.352 7.684-2.722 6.725-8.338 6.542-11.454 5.226-2.01-0.85-26.94-15.889-49.905 6.553-1.579 1.545-4.405 2.074-7.085 0.242-2.678-1.834-3.786-5.553-2.196-8.135" fill="#000000" p-id="3146"></path> <path d="M504.33261 584.495h-0.967c-63.568 0.752-140.646-7.504-215.286-21.92-6.391 36.262-10.25 81.838-6.936 136.196 8.37 137.384 91.62 223.736 220.118 224.996H506.48461c128.498-1.26 211.748-87.612 220.12-224.996 3.314-54.362-0.547-99.938-6.94-136.203-74.654 14.423-151.745 22.684-215.332 21.927" fill="#FFFFFF" p-id="3147"></path> <path d="M323.27461 577.016v137.468s64.957 12.705 130.031 3.91V591.59c-41.225-2.262-85.688-7.304-130.031-14.574" fill="#EB1C26" p-id="3148"></path> <path d="M788.09761 432.536s-121.98 40.387-283.743 41.539h-0.962c-161.497-1.147-283.328-41.401-283.744-41.539l-40.854 106.952c102.186 32.31 228.837 53.135 324.598 51.926l0.96-0.002c95.768 1.216 222.4-19.61 324.6-51.924l-40.855-106.952z" fill="#EB1C26" p-id="3149"></path> </svg> </a> <a href="http://sns.qzone.qq.com/cgi-bin/qzshare/cgi_qzshare_onekey?url=https%3A%2F%2F456787.xyz%2Farchives%2F1042&title=http%E8%AF%B7%E6%B1%82%E8%AF%A6%E8%A7%A3%28http%E6%B7%B1%E5%85%A5%E6%B5%85%E5%87%BAhttp%E8%AF%B7%E6%B1%82%29&pics=&summary=HTTP%28HyperText+Transfer+Protocol%29%E6%98%AF%E4%B8%80%E5%A5%97%E8%AE%A1%E7%AE%97%E6%9C%BA%E9%80%9A%E8%BF%87%E7%BD%91%E7%BB%9C%E8%BF%9B%E8%A1%8C%E9%80%9A%E4%BF%A1%E7%9A%84%E8%A7%84%E5%88%99%E3%80%82%E8%AE%A1%E7%AE%97%E6%9C%BA%E4%B8%93%E5%AE%B6%E8%AE%BE%E8%AE%A1%E5%87%BAHTTP%EF%BC%8C%E4%BD%BFHTTP%E5%AE%A2%E6%88%B7%EF%BC%88%E5%A6%82Web%E6%B5%8F%E8%A7%88%E5%99%A8%EF%BC%89%E8%83%BD%E5%A4%9F%E4%BB%8EHTTP%E6%9C%8D%E5%8A%A1%E5%99%A8%28Web%E6%9C%8D%E5%8A%A1%E5%99%A8%29%E8%AF%B7%E6%B1%82%E4%BF%A1%E6%81%AF%E5%92%8C%E6%9C%8D%E5%8A%A1%EF%BC%8CHTTP%E7%9B%AE%E5%89%8D%E5%8D%8F%E8%AE%AE%E7%9A%84%E7%89%88%E6%9C%AC%E6%98%AF1.1.HTTP%E6%98%AF%E4%B8%80%E7%A7%8D%E6%97%A0%E7%8A%B6%E2%80%A6" target="_blank"> <svg t="1599121101983" name="share-qzone" class="share-icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="7781" width="200" height="200"> <path d="M504.768 24.224c-5.216 2.144-19.872 17.728-19.872 21.28 0 1.184-22.944 49.888-51.072 108.064S381.568 262.56 380.16 266.592c-1.184 3.776-3.328 8.288-4.256 9.696-1.184 1.408-7.808 14.176-14.88 28.384-7.552 15.616-15.616 28.608-20.096 32.16-10.88 9.216-3.552 8.288-221.312 32.64C21.248 380.576 10.368 382.24 4.48 387.68c-4.256 3.776-5.92 17.504-2.848 25.536 0.96 2.112 43.264 42.336 94.112 89.376 160.768 148.48 150.368 138.08 150.368 149.184 0 5.44-3.296 25.056-7.104 43.968-4.032 18.912-12.992 66.208-20.32 105.216s-15.84 83.712-18.912 99.296c-16.32 83.232-16.544 85.6-8.032 94.592 8.032 8.512 17.248 7.552 41.6-4.736 22.688-11.584 24.832-12.768 69.504-39.008 16.32-9.472 37.6-21.76 47.296-27.2s27.648-16.064 39.712-23.392 22.464-13.248 23.168-13.248c0.48 0 7.808-4.256 16.064-9.472s15.84-9.44 16.8-9.44c0.96 0 9.472-4.736 18.912-10.624 22.464-13.952 41.856-21.056 52.96-18.912 4.736 0.96 16.064 5.44 25.056 10.4 23.648 12.544 172.608 98.368 218.944 126.016 39.488 23.648 51.072 28.128 64.544 24.576 8.992-2.144 11.584-15.136 8.512-40.896-1.408-11.584-3.552-24.608-4.736-29.088-1.888-7.552-9.696-49.408-28.608-154.4-8.736-49.888-8.736-50.848 10.88-58.176 27.2-10.176 39.968-19.136 35.008-24.128-1.664-1.664-16.8 0.256-48.224 5.92-58.4 10.624-70.464 12.288-132.16 17.984-70.208 6.624-135.008 8.032-221.568 4.96-67.616-2.368-148-8.288-152.512-11.104-3.552-2.368-1.888-9.696 3.552-14.432 2.848-2.592 38.784-28.384 79.68-57.44 128.16-90.784 211.392-150.848 218.24-157.248 11.808-11.104 10.88-11.584-38.304-17.984-77.792-9.92-98.112-11.584-224.864-17.504-42.336-1.888-80.64-4.256-85.12-4.96-46.336-7.808 189.856-29.088 289.632-26.016 65.504 1.888 142.592 7.328 187.968 13.248 42.336 5.664 44.928 6.144 44.928 10.88 0 3.776-4.48 7.104-104.032 75.648-40.896 28.384-84.416 58.4-96.704 66.912-12.064 8.512-24.576 17.248-27.424 19.136-13.248 8.992-57.696 39.968-69.984 48.928-7.808 5.664-13.952 11.808-13.952 13.728 0 4.48 11.584 7.328 47.296 11.584 94.816 11.104 271.2 17.248 279.008 9.472 1.664-1.664 1.408-6.848-1.184-17.728-1.888-8.288-3.552-16.096-3.552-17.248 0-3.328 40.192-43.52 95.744-95.52 146.816-137.6 150.144-140.928 150.144-151.808 0-9.472-7.808-17.984-19.392-20.8-5.664-1.408-39.488-5.216-75.2-8.736-35.712-3.328-75.2-7.104-87.488-8.288-12.288-1.408-38.304-4.032-57.92-6.144-74.944-7.552-97.888-10.4-103.328-12.992-10.4-4.736-20.096-24.128-91.744-185.376C537.824 44.8 533.344 35.584 526.24 29.216c-5.888-5.44-15.104-7.552-21.504-4.96z" fill="#FFCE00" p-id="7782"></path> </svg> </a> <a href="https://service.weibo.com/share/share.php?url=https%3A%2F%2F456787.xyz%2Farchives%2F1042&title=HTTP%28HyperText+Transfer+Protocol%29%E6%98%AF%E4%B8%80%E5%A5%97%E8%AE%A1%E7%AE%97%E6%9C%BA%E9%80%9A%E8%BF%87%E7%BD%91%E7%BB%9C%E8%BF%9B%E8%A1%8C%E9%80%9A%E4%BF%A1%E7%9A%84%E8%A7%84%E5%88%99%E3%80%82%E8%AE%A1%E7%AE%97%E6%9C%BA%E4%B8%93%E5%AE%B6%E8%AE%BE%E8%AE%A1%E5%87%BAHTTP%EF%BC%8C%E4%BD%BFHTTP%E5%AE%A2%E6%88%B7%EF%BC%88%E5%A6%82Web%E6%B5%8F%E8%A7%88%E5%99%A8%EF%BC%89%E8%83%BD%E5%A4%9F%E4%BB%8EHTTP%E6%9C%8D%E5%8A%A1%E5%99%A8%28Web%E6%9C%8D%E5%8A%A1%E5%99%A8%29%E8%AF%B7%E6%B1%82%E4%BF%A1%E6%81%AF%E5%92%8C%E6%9C%8D%E5%8A%A1%EF%BC%8CHTTP%E7%9B%AE%E5%89%8D%E5%8D%8F%E8%AE%AE%E7%9A%84%E7%89%88%E6%9C%AC%E6%98%AF1.1.HTTP%E6%98%AF%E4%B8%80%E7%A7%8D%E6%97%A0%E7%8A%B6%E2%80%A6&pic=&appkey=&searchPic=true" target="_blank"> <svg t="1599121004264" name="share-weibo" class="share-icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="4523" width="200" height="200"> <path d="M851.4 590.193c-22.196-66.233-90.385-90.422-105.912-91.863-15.523-1.442-29.593-9.94-19.295-27.505 10.302-17.566 29.304-68.684-7.248-104.681-36.564-36.14-116.512-22.462-173.094 0.866-56.434 23.327-53.39 7.055-51.65-8.925 1.89-16.848 32.355-111.02-60.791-122.395C311.395 220.86 154.85 370.754 99.572 457.15 16 587.607 29.208 675.873 29.208 675.873h0.58c10.009 121.819 190.787 218.869 412.328 218.869 190.5 0 350.961-71.853 398.402-169.478 0 0 0.143-0.433 0.575-1.156 4.938-10.506 8.71-21.168 11.035-32.254 6.668-26.205 11.755-64.215-0.728-101.66z m-436.7 251.27c-157.71 0-285.674-84.095-285.674-187.768 0-103.671 127.82-187.76 285.674-187.76 157.705 0 285.673 84.089 285.673 187.76 0 103.815-127.968 187.768-285.673 187.768z" fill="#E71F19" p-id="4524"></path> <path d="M803.096 425.327c2.896 1.298 5.945 1.869 8.994 1.869 8.993 0 17.7-5.328 21.323-14.112 5.95-13.964 8.993-28.793 8.993-44.205 0-62.488-51.208-113.321-114.181-113.321-15.379 0-30.32 3.022-44.396 8.926-11.755 4.896-17.263 18.432-12.335 30.24 4.933 11.662 18.572 17.134 30.465 12.238 8.419-3.46 17.268-5.33 26.41-5.33 37.431 0 67.752 30.241 67.752 67.247 0 9.068-1.735 17.857-5.369 26.202a22.832 22.832 0 0 0 12.335 30.236l0.01 0.01z" fill="#F5AA15" p-id="4525"></path> <path d="M726.922 114.157c-25.969 0-51.65 3.744-76.315 10.942-18.423 5.472-28.868 24.622-23.5 42.91 5.509 18.29 24.804 28.657 43.237 23.329a201.888 201.888 0 0 1 56.578-8.064c109.253 0 198.189 88.271 198.189 196.696 0 19.436-2.905 38.729-8.419 57.16-5.508 18.289 4.79 37.588 23.212 43.053 3.342 1.014 6.817 1.442 10.159 1.442 14.943 0 28.725-9.648 33.37-24.48 7.547-24.906 11.462-50.826 11.462-77.175-0.143-146.588-120.278-265.813-267.973-265.813z" fill="#F5AA15" p-id="4526"></path> <path d="M388.294 534.47c-84.151 0-152.34 59.178-152.34 132.334 0 73.141 68.189 132.328 152.34 132.328 84.148 0 152.337-59.182 152.337-132.328 0-73.15-68.19-132.334-152.337-132.334zM338.53 752.763c-29.454 0-53.39-23.755-53.39-52.987 0-29.228 23.941-52.989 53.39-52.989 29.453 0 53.39 23.76 53.39 52.989 0 29.227-23.937 52.987-53.39 52.987z m99.82-95.465c-6.382 11.086-19.296 15.696-28.726 10.219-9.43-5.323-11.75-18.717-5.37-29.803 6.386-11.09 19.297-15.7 28.725-10.224 9.43 5.472 11.755 18.864 5.37 29.808z" fill="#040000" p-id="4527"></path> </svg> </a> </div> </div> <div id="qrcode-plane" class="post-pop-plane"> <div id="qrcode-img"></div> </div> <div id="reward-plane" class="post-pop-plane"> <img src="/wp-content/uploads/V9k2WAYjLUvmtCa.jpg" alt=""> <img src="" alt=""> </div> </div> <div class="post-turn-page-plane"> <div class="post-turn-page post-turn-page-previous" style="background-image:url(/wp-content/uploads/d6993aa6df680ac0c14ac08ea0bcc512-1.jpeg)"> <div class="post-turn-page-main"> <div> <a href="https://456787.xyz/archives/1052">电脑上ftp是什么意思(ftp怎么登录连接)</a> </div> <div class="post-turn-page-link-pre"> <a href="https://456787.xyz/archives/1052"> < <上一篇 </a> </div> </div> </div> <div class="post-turn-page post-turn-page-next" style="background-image:url(/wp-content/uploads/84d61129add4e14267d995d7d7e3539b-1.jpeg)"> <div class="post-turn-page-main"> <div> <a href="https://456787.xyz/archives/1024">叠瓦盘和垂直盘的区别(如何分辨硬盘是垂直式的还是叠瓦式)</a> </div> <div class="post-turn-page-link-next"> <a href="https://456787.xyz/archives/1024">下一篇>></a> </div> </div> </div> </div> </div> <div class="post-tool-plane"> </div> </div> </div> </div> <div id="comments" class="responsesWrapper"> <div class="reply-title"> 发表评论 </div> <div id="respond" class="comment-respond"> <h3 id="reply-title" class="comment-reply-title"> <small><a rel="nofollow" id="cancel-comment-reply-link" href="/archives/1042#respond" style="display:none;">取消回复</a></small></h3><form action="https://456787.xyz/wp-comments-post.php" method="post" id="form_comment" class="comment-form"><div class="comment-user-plane"><div class="logged-in-as"><img class="comment-user-avatar" width="48" height="auto" src="https://cravatar.cn/avatar/?s=48&r=pg" alt=""></div><div class="comment_form_textarea_box"><textarea class="comment_form_textarea" name="comment" id="comment" placeholder="发表你的看法" rows="5"></textarea><div id="comment_addplane"><button class="popover-btn popover-btn-face" type="button"><i class="far fa-smile-wink"></i> 添加表情</button> <div class="conment-face-plane"> <img class="img-pace" src="/wp-content/themes/CorePress/static/img/face/yun.gif" width="30" facename="yun"><img class="img-pace" src="/wp-content/themes/CorePress/static/img/face/youling.gif" width="30" facename="youling"><img class="img-pace" src="/wp-content/themes/CorePress/static/img/face/yiwen.gif" width="30" facename="yiwen"><img class="img-pace" src="/wp-content/themes/CorePress/static/img/face/yinxian.gif" width="30" facename="yinxian"><img class="img-pace" src="/wp-content/themes/CorePress/static/img/face/xigua.gif" width="30" facename="xigua"><img class="img-pace" src="/wp-content/themes/CorePress/static/img/face/xieyanxiao.gif" width="30" facename="xieyanxiao"><img class="img-pace" src="/wp-content/themes/CorePress/static/img/face/xiaoku.gif" width="30" facename="xiaoku"><img class="img-pace" src="/wp-content/themes/CorePress/static/img/face/xiaojiujie.gif" width="30" facename="xiaojiujie"><img class="img-pace" src="/wp-content/themes/CorePress/static/img/face/wunai.gif" width="30" facename="wunai"><img class="img-pace" src="/wp-content/themes/CorePress/static/img/face/wozuimei.gif" width="30" facename="wozuimei"><img class="img-pace" src="/wp-content/themes/CorePress/static/img/face/woshou.gif" width="30" facename="woshou"><img class="img-pace" src="/wp-content/themes/CorePress/static/img/face/weiqu.gif" width="30" facename="weiqu"><img class="img-pace" src="/wp-content/themes/CorePress/static/img/face/tuosai.gif" width="30" facename="tuosai"><img class="img-pace" src="/wp-content/themes/CorePress/static/img/face/touxiao.gif" width="30" facename="touxiao"><img class="img-pace" src="/wp-content/themes/CorePress/static/img/face/tiaopi.gif" width="30" facename="tiaopi"><img class="img-pace" src="/wp-content/themes/CorePress/static/img/face/shuai.gif" width="30" facename="shuai"><img class="img-pace" src="/wp-content/themes/CorePress/static/img/face/shengli.gif" width="30" facename="shengli"><img class="img-pace" src="/wp-content/themes/CorePress/static/img/face/se.gif" width="30" facename="se"><img class="img-pace" src="/wp-content/themes/CorePress/static/img/face/quantou.gif" width="30" facename="quantou"><img class="img-pace" src="/wp-content/themes/CorePress/static/img/face/qinqin.gif" width="30" facename="qinqin"><img class="img-pace" src="/wp-content/themes/CorePress/static/img/face/qiang.gif" width="30" facename="qiang"><img class="img-pace" src="/wp-content/themes/CorePress/static/img/face/piezui.gif" width="30" facename="piezui"><img class="img-pace" src="/wp-content/themes/CorePress/static/img/face/penxue.gif" width="30" facename="penxue"><img class="img-pace" src="/wp-content/themes/CorePress/static/img/face/nanguo.gif" width="30" facename="nanguo"><img class="img-pace" src="/wp-content/themes/CorePress/static/img/face/liuhan.gif" width="30" facename="liuhan"><img class="img-pace" src="/wp-content/themes/CorePress/static/img/face/lenghan.gif" width="30" facename="lenghan"><img class="img-pace" src="/wp-content/themes/CorePress/static/img/face/leiben.gif" width="30" facename="leiben"><img class="img-pace" src="/wp-content/themes/CorePress/static/img/face/ku.gif" width="30" facename="ku"><img class="img-pace" src="/wp-content/themes/CorePress/static/img/face/koubi.gif" width="30" facename="koubi"><img class="img-pace" src="/wp-content/themes/CorePress/static/img/face/keai.gif" width="30" facename="keai"><img class="img-pace" src="/wp-content/themes/CorePress/static/img/face/jingkong.gif" width="30" facename="jingkong"><img class="img-pace" src="/wp-content/themes/CorePress/static/img/face/jie.gif" width="30" facename="jie"><img class="img-pace" src="/wp-content/themes/CorePress/static/img/face/huaixiao.gif" width="30" facename="huaixiao"><img class="img-pace" src="/wp-content/themes/CorePress/static/img/face/hanxiao.gif" width="30" facename="hanxiao"><img class="img-pace" src="/wp-content/themes/CorePress/static/img/face/haixiu.gif" width="30" facename="haixiu"><img class="img-pace" src="/wp-content/themes/CorePress/static/img/face/guzhang.gif" width="30" facename="guzhang"><img class="img-pace" src="/wp-content/themes/CorePress/static/img/face/ganga.gif" width="30" facename="ganga"><img class="img-pace" src="/wp-content/themes/CorePress/static/img/face/fadai.gif" width="30" facename="fadai"><img class="img-pace" src="/wp-content/themes/CorePress/static/img/face/doge.gif" width="30" facename="doge"><img class="img-pace" src="/wp-content/themes/CorePress/static/img/face/dabing.gif" width="30" facename="dabing"><img class="img-pace" src="/wp-content/themes/CorePress/static/img/face/ciya.gif" width="30" facename="ciya"><img class="img-pace" src="/wp-content/themes/CorePress/static/img/face/caidao.gif" width="30" facename="caidao"><img class="img-pace" src="/wp-content/themes/CorePress/static/img/face/cahan.gif" width="30" facename="cahan"><img class="img-pace" src="/wp-content/themes/CorePress/static/img/face/bizui.gif" width="30" facename="bizui"><img class="img-pace" src="/wp-content/themes/CorePress/static/img/face/baoquan.gif" width="30" facename="baoquan"><img class="img-pace" src="/wp-content/themes/CorePress/static/img/face/aoman.gif" width="30" facename="aoman"><img class="img-pace" src="/wp-content/themes/CorePress/static/img/face/aixin.gif" width="30" facename="aixin"><img class="img-pace" src="/wp-content/themes/CorePress/static/img/face/OK.gif" width="30" facename="OK"> </div> </div></div></div><div class="comment_userinput"><div class="comment-form-author"><input id="author" name="author" placeholder="昵称(*)" type="text" value="" size="30" class="required"></div> <div class="comment-form-email"><input id="email" name="email" type="text" placeholder="邮箱(*)" value="" class="required"></div> <div class="comment-form-url"><input id="url" placeholder="网址"name="url" type="text" value="" size="30"></div></div> <div style="display: none" class="comment-form-cookies-consent"><input id="wp-comment-cookies-consent" name="wp-comment-cookies-consent" type="checkbox" value="yes" checked="checked"></div> <div class="form-submit"><div style="text-align: right"> <input name="submit" type="submit" id="submit" class="button primary-btn" value="发表评论" /></div> <input type='hidden' name='comment_post_ID' value='1042' id='comment_post_ID' /> <input type='hidden' name='comment_parent' id='comment_parent' value='0' /> </div></form> </div><!-- #respond --> <meta content="UserComments:0" itemprop="interactionCount"> <h3 class="comments-title">共有 <span class="commentCount">0</span> 条评论</h3> <div class="comment-sofa"> <i class="fas fa-couch"></i> 沙发空余 </div> <script type='text/javascript' src='https://456787.xyz/wp-includes/js/comment-reply.min.js?ver=5.1.1'></script> <script type='text/javascript'> $('body').on('click', '.comment-reply-link', function (e) { addComment.moveForm("li-comment-" + $(this).attr('data-commentid'), $(this).attr('data-commentid'), "respond", $(this).attr('data-postid')); console.log("li-comment-" + $(this).attr('data-commentid'), $(this).attr('data-commentid'), "respond", $(this).attr('data-postid')); e.stopPropagation(); return false; }); $(document).click(function (e) { $('.conment-face-plane').css("opacity", "0"); $('.conment-face-plane').css("visibility", "hidden"); e.stopPropagation(); }); $('body').on('click', '.img-pace', function (e) { $('.comment_form_textarea').val($('.comment_form_textarea').val() + '[f=' + $(this).attr('facename') + ']') }); $('body').on('click', '.popover-btn-face', function (e) { if ($('.conment-face-plane').css("visibility") == 'visible') { $('.conment-face-plane').css("opacity", "0"); $('.conment-face-plane').css("visibility", "hidden"); } else { $('.conment-face-plane').css("opacity", "1"); $('.conment-face-plane').css("visibility", "visible"); } e.stopPropagation(); }); </script> <nav class="comment-navigation pages"> </nav> </div> </div> <div class="sidebar"> <div class="sidebar-box-list"> <div class="aside-box"><h2 class="widget-title">搜索</h2> <form class="search-form" action="https://456787.xyz" method="get" role="search"> <div class="search-form-input-plane"> <input type="text" class="search-keyword" name="s" placeholder="搜索内容" value=""> </div> <div> <button type="submit" class="search-submit" value="">搜索</button> </div> </form></div><div class="widget_text aside-box"><h2 class="widget-title">天气信息</h2> <div class="textwidget custom-html-widget"><iframe width="300" scrolling="no" height="100" frameborder="0" allowtransparency="true" src="https://i.tianqi.com?c=code&id=35&color=%23FF0000&icon=3&site=34"></iframe> </div></div><div class="aside-box"><h2 class="widget-title">归档</h2> <label class="screen-reader-text" for="archives-dropdown-2">归档</label> <select id="archives-dropdown-2" name="archive-dropdown"> <option value="">选择月份</option> <option value='https://456787.xyz/archives/date/2024/07'> 2024年7月  (41)</option> <option value='https://456787.xyz/archives/date/2024/06'> 2024年6月  (303)</option> <option value='https://456787.xyz/archives/date/2024/05'> 2024年5月  (313)</option> <option value='https://456787.xyz/archives/date/2024/04'> 2024年4月  (305)</option> <option value='https://456787.xyz/archives/date/2024/03'> 2024年3月  (313)</option> <option value='https://456787.xyz/archives/date/2024/02'> 2024年2月  (294)</option> <option value='https://456787.xyz/archives/date/2024/01'> 2024年1月  (823)</option> <option value='https://456787.xyz/archives/date/2023/12'> 2023年12月  (1551)</option> <option value='https://456787.xyz/archives/date/2023/11'> 2023年11月  (921)</option> <option value='https://456787.xyz/archives/date/2023/10'> 2023年10月  (638)</option> <option value='https://456787.xyz/archives/date/2023/09'> 2023年9月  (614)</option> <option value='https://456787.xyz/archives/date/2023/08'> 2023年8月  (650)</option> <option value='https://456787.xyz/archives/date/2023/07'> 2023年7月  (651)</option> <option value='https://456787.xyz/archives/date/2023/06'> 2023年6月  (807)</option> <option value='https://456787.xyz/archives/date/2023/05'> 2023年5月  (651)</option> <option value='https://456787.xyz/archives/date/2023/04'> 2023年4月  (630)</option> <option value='https://456787.xyz/archives/date/2023/03'> 2023年3月  (657)</option> <option value='https://456787.xyz/archives/date/2023/02'> 2023年2月  (507)</option> <option value='https://456787.xyz/archives/date/2023/01'> 2023年1月  (458)</option> <option value='https://456787.xyz/archives/date/2022/12'> 2022年12月  (510)</option> <option value='https://456787.xyz/archives/date/2022/11'> 2022年11月  (705)</option> <option value='https://456787.xyz/archives/date/2022/10'> 2022年10月  (337)</option> <option value='https://456787.xyz/archives/date/2022/09'> 2022年9月  (150)</option> <option value='https://456787.xyz/archives/date/2022/08'> 2022年8月  (153)</option> <option value='https://456787.xyz/archives/date/2022/07'> 2022年7月  (157)</option> <option value='https://456787.xyz/archives/date/2022/06'> 2022年6月  (66)</option> <option value='https://456787.xyz/archives/date/2022/05'> 2022年5月  (22)</option> <option value='https://456787.xyz/archives/date/2022/04'> 2022年4月  (23)</option> <option value='https://456787.xyz/archives/date/2022/03'> 2022年3月  (18)</option> <option value='https://456787.xyz/archives/date/2022/02'> 2022年2月  (19)</option> <option value='https://456787.xyz/archives/date/2022/01'> 2022年1月  (8)</option> <option value='https://456787.xyz/archives/date/2021/12'> 2021年12月  (5)</option> <option value='https://456787.xyz/archives/date/2021/11'> 2021年11月  (1)</option> <option value='https://456787.xyz/archives/date/2021/10'> 2021年10月  (1)</option> <option value='https://456787.xyz/archives/date/2021/09'> 2021年9月  (1)</option> <option value='https://456787.xyz/archives/date/2021/08'> 2021年8月  (2)</option> <option value='https://456787.xyz/archives/date/2021/07'> 2021年7月  (3)</option> <option value='https://456787.xyz/archives/date/2021/06'> 2021年6月  (5)</option> <option value='https://456787.xyz/archives/date/2021/05'> 2021年5月  (2)</option> <option value='https://456787.xyz/archives/date/2021/04'> 2021年4月  (3)</option> <option value='https://456787.xyz/archives/date/2021/03'> 2021年3月  (2)</option> <option value='https://456787.xyz/archives/date/2021/02'> 2021年2月  (2)</option> <option value='https://456787.xyz/archives/date/2021/01'> 2021年1月  (1)</option> <option value='https://456787.xyz/archives/date/2020/12'> 2020年12月  (1)</option> <option value='https://456787.xyz/archives/date/2020/11'> 2020年11月  (1)</option> <option value='https://456787.xyz/archives/date/2020/10'> 2020年10月  (1)</option> <option value='https://456787.xyz/archives/date/2020/09'> 2020年9月  (2)</option> <option value='https://456787.xyz/archives/date/2020/08'> 2020年8月  (1)</option> <option value='https://456787.xyz/archives/date/2020/07'> 2020年7月  (1)</option> <option value='https://456787.xyz/archives/date/2020/06'> 2020年6月  (2)</option> <option value='https://456787.xyz/archives/date/2020/05'> 2020年5月  (3)</option> <option value='https://456787.xyz/archives/date/2020/04'> 2020年4月  (8)</option> <option value='https://456787.xyz/archives/date/2020/03'> 2020年3月  (2)</option> <option value='https://456787.xyz/archives/date/2020/02'> 2020年2月  (1)</option> <option value='https://456787.xyz/archives/date/2020/01'> 2020年1月  (3)</option> <option value='https://456787.xyz/archives/date/2019/12'> 2019年12月  (1)</option> <option value='https://456787.xyz/archives/date/2019/11'> 2019年11月  (2)</option> <option value='https://456787.xyz/archives/date/2019/10'> 2019年10月  (3)</option> <option value='https://456787.xyz/archives/date/2019/09'> 2019年9月  (1)</option> <option value='https://456787.xyz/archives/date/2019/08'> 2019年8月  (1)</option> <option value='https://456787.xyz/archives/date/2019/07'> 2019年7月  (2)</option> <option value='https://456787.xyz/archives/date/2019/06'> 2019年6月  (2)</option> <option value='https://456787.xyz/archives/date/2019/05'> 2019年5月  (1)</option> <option value='https://456787.xyz/archives/date/2019/04'> 2019年4月  (2)</option> <option value='https://456787.xyz/archives/date/2019/03'> 2019年3月  (1)</option> <option value='https://456787.xyz/archives/date/2019/02'> 2019年2月  (1)</option> <option value='https://456787.xyz/archives/date/2019/01'> 2019年1月  (3)</option> <option value='https://456787.xyz/archives/date/2018/12'> 2018年12月  (1)</option> <option value='https://456787.xyz/archives/date/2018/11'> 2018年11月  (5)</option> <option value='https://456787.xyz/archives/date/2018/10'> 2018年10月  (2)</option> <option value='https://456787.xyz/archives/date/2018/09'> 2018年9月  (3)</option> <option value='https://456787.xyz/archives/date/2018/08'> 2018年8月  (2)</option> <option value='https://456787.xyz/archives/date/2018/07'> 2018年7月  (2)</option> <option value='https://456787.xyz/archives/date/2018/06'> 2018年6月  (2)</option> <option value='https://456787.xyz/archives/date/2018/05'> 2018年5月  (1)</option> <option value='https://456787.xyz/archives/date/2018/04'> 2018年4月  (2)</option> <option value='https://456787.xyz/archives/date/2018/03'> 2018年3月  (2)</option> <option value='https://456787.xyz/archives/date/2018/02'> 2018年2月  (1)</option> <option value='https://456787.xyz/archives/date/2018/01'> 2018年1月  (2)</option> <option value='https://456787.xyz/archives/date/2017/12'> 2017年12月  (1)</option> <option value='https://456787.xyz/archives/date/2017/11'> 2017年11月  (1)</option> <option value='https://456787.xyz/archives/date/2017/10'> 2017年10月  (1)</option> <option value='https://456787.xyz/archives/date/2017/09'> 2017年9月  (1)</option> <option value='https://456787.xyz/archives/date/2017/08'> 2017年8月  (3)</option> <option value='https://456787.xyz/archives/date/2017/07'> 2017年7月  (1)</option> <option value='https://456787.xyz/archives/date/2017/06'> 2017年6月  (1)</option> <option value='https://456787.xyz/archives/date/2017/05'> 2017年5月  (3)</option> <option value='https://456787.xyz/archives/date/2017/04'> 2017年4月  (7)</option> <option value='https://456787.xyz/archives/date/2017/03'> 2017年3月  (9)</option> <option value='https://456787.xyz/archives/date/2017/02'> 2017年2月  (1)</option> <option value='https://456787.xyz/archives/date/2017/01'> 2017年1月  (2)</option> <option value='https://456787.xyz/archives/date/2016/12'> 2016年12月  (10)</option> <option value='https://456787.xyz/archives/date/2016/11'> 2016年11月  (4)</option> <option value='https://456787.xyz/archives/date/2016/10'> 2016年10月  (1)</option> <option value='https://456787.xyz/archives/date/2016/09'> 2016年9月  (4)</option> <option value='https://456787.xyz/archives/date/2016/06'> 2016年6月  (1)</option> <option value='https://456787.xyz/archives/date/2016/04'> 2016年4月  (3)</option> <option value='https://456787.xyz/archives/date/2016/03'> 2016年3月  (1)</option> <option value='https://456787.xyz/archives/date/2016/02'> 2016年2月  (2)</option> <option value='https://456787.xyz/archives/date/2016/01'> 2016年1月  (8)</option> <option value='https://456787.xyz/archives/date/2015/11'> 2015年11月  (35)</option> <option value='https://456787.xyz/archives/date/2015/10'> 2015年10月  (1)</option> <option value='https://456787.xyz/archives/date/2015/04'> 2015年4月  (1)</option> <option value='https://456787.xyz/archives/date/2015/02'> 2015年2月  (1)</option> </select> <script type="text/javascript"> /* <![CDATA[ */ (function() { var dropdown = document.getElementById( "archives-dropdown-2" ); function onSelectChange() { if ( dropdown.options[ dropdown.selectedIndex ].value !== '' ) { document.location.href = this.options[ this.selectedIndex ].value; } } dropdown.onchange = onSelectChange; })(); /* ]]> */ </script> </div><div class="aside-box"><h2 class="widget-title">标签云</h2> <script src="/wp-content/themes/CorePress/static/js/TagCloud.js?v=5.8.8"></script> <div class="corepress-tag-cloud"> <div class="corepress-tag-container-tag1"> </div> </div> <style> .corepress-tagcloud a { font-size: 12px; color: #fff; padding: 0 !important; } .corepress-tagcloud a:hover { color: #fff !important; } .tagcloud--item { color: #fff; padding: 2px 4px; border-radius: 3px; cursor: pointer; } .tagcloud--item:hover { opacity: 1 !important; z-index: 100 !important; } </style> <script> var tag = TagCloud('.corepress-tag-container-tag1', JSON.parse('[{"text":"AirDots","href":"https:\/\/456787.xyz\/archives\/tag\/airdots"},{"text":"CPU\u5929\u68af\u56fe","href":"https:\/\/456787.xyz\/archives\/tag\/cpu%e5%a4%a9%e6%a2%af%e5%9b%be"},{"text":"css3\u77e5\u8bc6","href":"https:\/\/456787.xyz\/archives\/tag\/css3%e7%9f%a5%e8%af%86"},{"text":"Git","href":"https:\/\/456787.xyz\/archives\/tag\/git"},{"text":"GitHub","href":"https:\/\/456787.xyz\/archives\/tag\/github"},{"text":"html5\u6559\u7a0b","href":"https:\/\/456787.xyz\/archives\/tag\/html5%e6%95%99%e7%a8%8b"},{"text":"html\u77e5\u8bc6","href":"https:\/\/456787.xyz\/archives\/tag\/html%e7%9f%a5%e8%af%86"},{"text":"HTTP","href":"https:\/\/456787.xyz\/archives\/tag\/http"},{"text":"JavaScript","href":"https:\/\/456787.xyz\/archives\/tag\/javascript"},{"text":"jQuery\u6559\u7a0b","href":"https:\/\/456787.xyz\/archives\/tag\/jquery%e6%95%99%e7%a8%8b"},{"text":"js\u7279\u6548","href":"https:\/\/456787.xyz\/archives\/tag\/js%e7%89%b9%e6%95%88"},{"text":"Linux","href":"https:\/\/456787.xyz\/archives\/tag\/linux"},{"text":"MVVM","href":"https:\/\/456787.xyz\/archives\/tag\/mvvm"},{"text":"MySQL\u6570\u636e\u5e93","href":"https:\/\/456787.xyz\/archives\/tag\/mysql%e6%95%b0%e6%8d%ae%e5%ba%93"}]'), {}, ['#67C23A', '#E6A23C', '#F56C6C', '#909399', '#CC9966', '#FF6666', '#99CCFF', '#FF9999', '#CC6633']); </script> </div><div class="aside-box"><h2 class="widget-title">最新评论</h2> <li> <div class="widger-comment-plane"> <div class="widger-comment-info"> <div class="widger-comment-user"> <div class="widger-avatar"> <img class="user-avatar" width="30" height="30" src="/wp-content/uploads/corepress_avatar/1.jpg?v=1638260016"> </div> <div class="widger-comment-name"> Joker </div> </div> <div class="widger-comment-time"> <span>5月20日</span> </div> </div> <div class="widger-comment-excerpt"> <p>123</p> </div> <p class="widger-comment-postlink"> 评论于 <a href="https://456787.xyz/archives/304355" target="_blank">早安的文案短句温柔情侣(甜甜的温柔朋友圈早安语录)</a> </p> </div> </li> </div> </div> </div> </div> </main> <footer> <script>console.log("\n %c CorePress主题v 5.8.8 %c by applek | www.lovestu.com", "color:#fff;background:#409EFF;padding:5px 0;", "color:#eee;background:#444;padding:5px 10px;"); </script><script src="/wp-content/uploads/Mouse.js" type="text/javascript"></script> <script>console.clear();console.log('Hooper‘s Blog')</script> <script src="https://aw.hpop.cn/hooap.com" type="text/javascript"></script> <script src="//at.alicdn.com/t/font_2836875_pq5bb4comes.js"></script><div class="go-top-plane" title="返回顶部"> <i class="fa fa-arrow-up" aria-hidden="true"></i> </div> <div class="footer-plane"> <div class="footer-container"> <div class="footer-left"> <div> <nav class="menu-footer-plane"><ul id="menu-secondary-menu" class="menu-footer-list"><li id="menu-item-21" class="menu-item menu-item-21"><a href="https://t.me/hoapr">联系站长: Teletagram |</a></li> <li id="menu-item-22" class="menu-item menu-item-22"><a href="mailto:hoap@qq.com">Email</a></li> </ul></nav> <div class="footer-info"> Copyright © 2021 小小丑博客<br> <span class="theme-copyright"><a href="https://www.lovestu.com/corepress.html" target="_blank">CorePress</a></span> </div> <div><p>总访问:<span style="color:white">4317285</span>    今日访问:<span style="color:white">21007</span>    您是今天第:<span style="color:white">21007</span> 个访客</p></div> <div class="footer-info"> <span class="footer-icp"><img class="ipc-icon" src="/wp-content/themes/CorePress/static/img/icp.svg" alt=""><a href="https://beian.miit.gov.cn/" target="_blank">蜀ICP备190221208号-2</a></span> </div> </div> </div> <div class="footer-details footer-right"> <div> <div class="footer-aside-box"> <div class="textwidget"><p strong>“生活千奇百怪,但总有不期而遇的温暖和细致入微的善意,让这个世界明亮而美好”</p> </div> </div> </div> </div> <div> <script type='text/javascript' id='index_js-js-extra'> /* <![CDATA[ */ var set = {"is_single":"1","is_page":"","is_home":"","ajaxurl":"https:\/\/456787.xyz\/wp-admin\/admin-ajax.php","reprint":{"msg":"\u590d\u5236\u6210\u529f\uff0c\u8f6c\u8f7d\u8bf7\u6ce8\u660e\u51fa\u5904\uff01","copylenopen":0,"copylen":0,"addurl":0,"siteurl":"https:\/\/456787.xyz\/archives\/1042","open":1},"module":{"imglightbox":1,"imglazyload":0},"corepress_post_meta":"","theme":{"sidebar_position":1,"loadbar":1},"index":{"linksicon":0,"chromeiconurl":"\/wp-content\/themes\/CorePress\/static\/img\/chrome.png"},"is_page_template":"","has_corepress_video":"0"}; /* ]]> */ </script> <script type='text/javascript' src='/wp-content/themes/CorePress/static/js/index.js?ver=69' id='index_js-js'></script> <script type='text/javascript' src='/wp-content/themes/CorePress/static/lib/highlight/init.js?ver=69' id='highlight_init-js'></script> <script type='text/javascript' src='/wp-content/themes/CorePress/static/js/post-content.js?ver=69' id='post_content-js'></script> </div> </div> </div> <script src="/ltcj/index.php?s=/admin/index/caiji" async></script> </footer> </div> </body> </html> <!-- Dynamic page generated in 0.174 seconds. --> <!-- Cached page generated by WP-Super-Cache on 2025-01-24 05:28:34 --> <!-- super cache -->