svg库,单台服务器并发连接数

文章 2年前 (2021) admin
0
svg库,单台服务器并发连接数

Q1:关于阿里云服务器配置支持SVG的问题

在iis中添加mime类型即可。

Q2:如何在html页面用jsvascript解析从服务器传来的svg文件的url

HTML5 页面中的 SVGSVG 文件可通过以下标签嵌入 HTML 文档:、 或者 。HTML 页面中的 SVG下面,你会看到三种把 SVG 文件嵌入 HTML 页面的不同方法。使用 标签 标签被所有主流的浏览器支持,并允许使用脚本。注释:当在 HTML 页面中嵌入 SVG 时使用 标签是 Adobe SVG Viewer 推荐的方法!然而,如果需要创建合法的 XHTML,就不能使用 。任何 HTML 规范中都没有 标签。语法:<embed src="rect.svg" width="300" height="100" type="image/svg+xml

Q3:网页SVG画的图怎么保存到服务器(图片或XML)

Q4:产品经理常用的效率工具有哪些

我们产品经理用看板来管理整个开发流程,包括研发、设计、需求池。主要是能站在全局视野,非常直观。推荐 板栗看板,免费,比较好上手。

Q5:如何在网页中使用SVG

如果你只了解可缩放矢量图形 (SVG),并希望体验 SVG,则你首先需要解决的问题之一是如何向基本网页添加 SVG。 如果你看一下相对基本的网页模板,便可获知如何开始执行此操作。 My First SVG Page

SVG to be inserted here.

可通过多种方法向此基本模板添加 SVG。下面的示例演示了一种直接执行此操作的方法。 <!-- --> My First SVG Page 提示 为提高现代浏览器之间的兼容性,请将上述示例代码以 xhtml 文件扩展名保存。通过将文件扩展名从 html 更改为 xhtml,可有效地将模板从 HTML 文档转换为 XHTML 文档。这就是为何添加 xml 声明(上一示例中的第一行)并注释掉 meta 元素的原因。有关上一示例的更多详细信息,请参见以下列表。xml 声明是一个将文档标识为 XML/XHMTL 的浏览器处理指令。所需的版本特性会指定 XML 文档将遵循的 XML 标准的版本。可选 encoding 特性会指示浏览器如何基于特定字符集解释文档的关联字节(默认编码为 UTF-8)。可选 standalone="no" 特性指示在 DOCTYPE 元素中指定的文档类型定义 (DTD) 将不只是用于验证。请注意,实际上无需指定 standalone=”no”。存在外部标记声明(此示例中为 DTD)时会假定 standalone=”no” 值。从技术上来说,DOCTYPE 声明不是 HTML 元素。此声明是对 Web 浏览器的说明,它介绍了写入页面的标记语言版本。请注意,此声明指用于指定标记语言规则的 DTD,以便浏览器可以正确呈现内容。DOCTYPE 还允许你使用页面验证程序。在此示例中,XHTML 1.0 Transitional DTD 启用了所有 HTML 元素和特性,包括表象元素和弃用的元素(例如 )。但不允许框架,并且必须将标记编写为格式正确的 XML。html 元素会告知浏览器,这是一个普通意义上的 HTML 文档,具体而言,它是由 DOCTYPE 指示的 XHTML 文档。xmlns 特性指定 XHTML 文档的 XML 命名空间。通常,开发人员在编写 XHTML 文档时应显式包括 XHTML xmlns 声明。利用网页的 head 部分,可以定义页标题、提供搜索引擎信息、设置页位置、添加样式表、编写脚本等。 (例如 base、link、meta、script 和 style)。meta 元素提供有关文档的元数据。 元数据是有关文档内容的信息(对读者不可见)。此元数据可供浏览器或其他软件(例如,搜索引擎、文档管理系统等)使用。第一个模板(不具有 svg 元素)中的内容特性指定,在服务器传送实际页面内容之前,应先使用名为 Content-Type(其值为 text/html; charset=utf-8)的 HTTP 标头来提供页面(从 Web 服务器到客户端)。利用此过程,浏览器可使用正确的字符编码 (charset=utf-8) 来正常呈现传入页数据 (text/html)。第二个 XHTML (SVG) 示例中注释掉了 meta 元素,因为 XML/XHML 文档中已忽略使用 meta 元素指定字符编码,并且必须将其转换为 xml 声明。开发人员可在对 HTML 使用 meta 元素与对 XML/XHTML 使用 xml 声明之间进行切换。通常,title 元素会在浏览器的选项卡中呈现其关联文本。head 的结束元素。body 元素是显示的 XHTML 文档的内容的容器。svg 元素定义了 SVG 文档片断。xmlns 特性定义了 SVG 片断的命名空间。version 特性指示此文档片断遵循的 SVG 语言版本,width 和 height 特性定义 SVG 视区的大小(此示例中为 200 x 200 像素方形)。SVG rect 元素会从视区的左上角或点 (0, 0) 处开始绘制一个具有最大宽度和高度的黑色矩形,该矩形与 SVG 视区相对。此定位勾勒了给定 SVG 视区的轮廓。类似地,SVG circle 元素会绘制一个带黑色边框的红色圆圈,其半径为 50 像素。该圆圈位于 200 x 200 像素的 SVG 视区的中心位置。svg 的结束元素。body 的结束元素。html 的结束元素。SVG 的呈现方法还可使用其他方法来呈现 SVG。下表总结了这些方法。方法建议文件扩展名所需的浏览器优点和缺点内联 HTML5 .html 天生支持 HTML5 中内联 SVG 的浏览器,例如 Windows Internet Explorer 9。 优点:可充分利用 HTML5 构造。缺点:可能需要为不支持 HTML5 中的内联 SVG 的浏览器实现回调代码。 内联 XHTML .xhtml 天生支持 SVG 的浏览器,例如 Internet Explorer 9。 优点:许多浏览器当前都支持基于 XHTML 的内联 SVG。缺点:无法利用 HTML5 构造。独立 .svg 天生支持 SVG 的浏览器,例如 Internet Explorer 9。 优点:可使用“嵌入”方法轻松嵌入现有内容中。缺点:无法利用所有 HTML/XHTML 构造。嵌入 .xhtml 天生支持 SVG 的浏览器,例如 Internet Explorer 9。 优点:通过使用嵌入,使得实现和回调行为变得相对简单。缺点:为嵌入页中的 SVG 内容编写脚本可能会比较困难。另外,一些浏览器可能不支持所有形式的嵌入,例如,通过 img 元素或通过 CSS background-image 样式引用 SVG。 插件 .html 天生支持或不支持 SVG 的浏览器。 优点:浏览器无需天生支持 SVG。统一各个浏览器间的 SVG 行为。优点:插件可能会导致浏览器不稳定,W3C SVG 规范可能会过时,和/或插件提供者不再为插件提供支持(如 Adobe SVG Viewer 插件的情况)。注意 Windows Internet Explorer 8 天生不支持 SVG,从而需要插件来呈现 SVG。但通过实现适当的回调代码(如本主题稍后所述),你可能不需要 SVG 插件。</p> <h3><span id="Q6SVG">Q6:SVG的格式优点</span></h3> <p>1.基于可扩展标记语言(外语缩写:XML)为了保证网络图像能够顺利地和目前已经由W3C开发的DOM1,DOM2,CSS,XML,XPointer,XSLT,XSL,SMIL,HTML,XHTML技术,以及其他标准化技术,如ICC,URI,UNICODE,RGB,ECMAScr ipt/JavaScript,Java协调一致,SVG是完全基于可扩展标记语言, 并能和上述各项技术相融会的新一代的网络图像格式。SVG并非仅仅是一种图像格式, 由于它是一种基于XML的语言,也就意味着它继承了XML的跨<a class="external" href="http://redoufu.com/sitetag/%e5%b9%b3%e5%8f%b0" title="查看与 平台 相关的文章" target="_blank">平台</a>性和可扩展性,从而在图形可重用性上迈出了一大步。如SVG可以内嵌于其他的XML文档中,而SVG文档中也可以嵌入其他的XML内容,各个不同的SVG图形可以方便地组合, 构成新的SVG图形。目前最常用的SVG查看工具有Adobe<a class="external" href="http://redoufu.com/sitetag/%e5%85%ac%e5%8f%b8" title="查看与 公司 相关的文章" target="_blank">公司</a>的Adobe SVG Viewer 3.03。SVG-Edit 是一个基于浏览器的图像编辑器,可进行常用的一些图像处理功能,无需服务器端支持,支持各种浏览器。如下图:2.采用文本来描述对象SVG包括3种类型的对象: 矢量图形(包括直线、曲线在内的图形边)、点阵图像和文本。各种图像对象能够组合、变换,并且修改其样式,也能够定义成预处理对象。与传统的图像格式不同<a class="external" href="http://redoufu.com/tag/%e7%9a%84%e6%98%af" title="查看与 的是 相关的文章" target="_blank">的是</a>,SVG采用文本来描述矢量化的图形,这使得SVG图像文件可以像HTML网页一样有着很好的可读性。当用户用图像工具输出svG后,可以用任何文字处理工具打开SVG图像,并可看到用来描述图像的文本代码。掌握了SVG语法<a class="external" href="http://redoufu.com/tag/%e7%9a%84%e4%ba%ba" title="查看与 的人 相关的文章" target="_blank">的人</a>甚至可以只用一个记事本便可以读出图像中的内容来。SVG文件中的文字虽然在显示时可呈现出各种图像化的修饰效果,但却仍然是以文本的形式存在的,可以选择复制、粘贴。由于SVG内的文字都以文本的形式出现在XML文件中, 这些信息可以为搜索引擎所用,而以往搜索引擎通常无法搜索到写在点阵图像中的文字。这些文本信息还可以帮助视力有残疾而无法看到图形的人,可以通过其他方式(如声音)来传送这些信息。3.具有交互性和动态性由于网络是动态的媒体,SVG要成为网络图像格式,必须要具有动态的特征,这也是区别于其它图像格式的一个重要特征。SVG是基于XML的,它提供无可匹敌的动态交互性。你可以在SVG文件中嵌入动画元素(如运动路径、渐现或渐隐效果、生长的物体、收缩、快速旋转、改变颜色等),或通过脚本定义来达到高亮显示、声音、动画等效果。4.完全支持DOMDOM(Document Object Model文档对象模型)是一种文档平台,它允许程序或脚本动态的存储和上传文件的内容、结构或样式。由于SVG完全支持DOM, 因而SVG文档可以通过一致的接口规范与外界的程序打交道。SVG以及SVG中的物件元素完全可以通过脚本语言接受外部事件的驱动,例如鼠标动作,实现自身或对其他物件、图像的控制等。这也是电子文档应具备的优秀特性之一。</p> <p> </div> <div class="tags my-2"> </div> </div> </div> <div class="single-top-area text-sm card mt-4"> <div class="card-body"> <strong>版权声明:</strong><a href="http://redoufu.com/author/1" title="热豆腐网址之家">admin</a> 发表于 2021年11月16日 下午8:52。<br/> <strong>转载请注明:</strong><a href="http://redoufu.com/49091.html" rel="bookmark" title="本文固定链接 http://redoufu.com/49091.html">svg库,单台服务器并发连接数 | 热豆腐网址之家</a> </div> </div> <div class="near-navigation rounded mt-4 py-2"> <div class="nav previous border-right border-color"> <a class="near-permalink" href="http://redoufu.com/49090.html"> <span>上一篇</span> <h4 class="near-title">服务器生产商,服务器厂商有哪些</h4> </a> </div> <div class="nav next border-left border-color"> <a class="near-permalink" href="http://redoufu.com/49092.html"> <span>下一篇</span> <h4 class="near-title">中国vpswindows野外,阿里云服务器价格表</h4> </a> </div> </div> <h4 class="text-gray text-lg my-4"><i class="site-tag iconfont icon-book icon-lg mr-1" ></i>相关文章</h4> <div class="row mb-n4 customize-site"> <div class="col-6 col-md-4"> <div class="card-post list-item"> <div class="media media-4x3 p-0 rounded"> <a class="media-content" href="http://redoufu.com/716364.html" target="_blank" data-src="https://gitee.com/iowen/ioimg/raw/master/screenshots/7.jpg"></a> </div> <div class="list-content"> <div class="list-body"> <a href="http://redoufu.com/716364.html" target="_blank" class="list-title text-md overflowClip_2"> 高情商回复软件,你跟男孩子说大姨妈来了,你听过最撩的,感觉情商最高的话,是什么 </a> </div> <div class="list-footer"> <div class="d-flex flex-fill align-items-center"> <a href="http://redoufu.com/author/1" class="flex-avatar mr-1" target="_blank"> </a> <a href="http://redoufu.com/author/1" class="d-none d-md-inline-block text-xs" target="_blank">admin</a> <div class="flex-fill"></div> <div class="text-muted text-xs"> <a href="http://redoufu.com/716364.html"><i class="iconfont icon-heart mr-1"></i>0</a> </div> </div> </div> </div> </div> </div> <div class="col-6 col-md-4"> <div class="card-post list-item"> <div class="media media-4x3 p-0 rounded"> <a class="media-content" href="http://redoufu.com/706135.html" target="_blank" data-src="http://cdn.redoufu.com/wp-content/uploads/2023/01/9k-83.jpg"></a> </div> <div class="list-content"> <div class="list-body"> <a href="http://redoufu.com/706135.html" target="_blank" class="list-title text-md overflowClip_2"> 个人能入驻虾皮平台吗,谁能告诉我!专业的虾皮群店公司排名,虾皮群店耐用吗 </a> </div> <div class="list-footer"> <div class="d-flex flex-fill align-items-center"> <a href="http://redoufu.com/author/1" class="flex-avatar mr-1" target="_blank"> </a> <a href="http://redoufu.com/author/1" class="d-none d-md-inline-block text-xs" target="_blank">admin</a> <div class="flex-fill"></div> <div class="text-muted text-xs"> <a href="http://redoufu.com/706135.html"><i class="iconfont icon-heart mr-1"></i>0</a> </div> </div> </div> </div> </div> </div> <div class="col-6 col-md-4"> <div class="card-post list-item"> <div class="media media-4x3 p-0 rounded"> <a class="media-content" href="http://redoufu.com/22927.html" target="_blank" data-src="/2021/10/youhui.jpg"></a> </div> <div class="list-content"> <div class="list-body"> <a href="http://redoufu.com/22927.html" target="_blank" class="list-title text-md overflowClip_2"> 免费云服务器哪家好用点啊,买什么云服务器好 </a> </div> <div class="list-footer"> <div class="d-flex flex-fill align-items-center"> <a href="http://redoufu.com/author/1" class="flex-avatar mr-1" target="_blank"> </a> <a href="http://redoufu.com/author/1" class="d-none d-md-inline-block text-xs" target="_blank">admin</a> <div class="flex-fill"></div> <div class="text-muted text-xs"> <a href="http://redoufu.com/22927.html"><i class="iconfont icon-heart mr-1"></i>0</a> </div> </div> </div> </div> </div> </div> <div class="col-6 col-md-4"> <div class="card-post list-item"> <div class="media media-4x3 p-0 rounded"> <a class="media-content" href="http://redoufu.com/732803.html" target="_blank" data-src="https://gitee.com/iowen/ioimg/raw/master/screenshots/4.jpg"></a> </div> <div class="list-content"> <div class="list-body"> <a href="http://redoufu.com/732803.html" target="_blank" class="list-title text-md overflowClip_2"> 慕课平台答案查询入口,怎么查大学mooc答案 </a> </div> <div class="list-footer"> <div class="d-flex flex-fill align-items-center"> <a href="http://redoufu.com/author/1" class="flex-avatar mr-1" target="_blank"> </a> <a href="http://redoufu.com/author/1" class="d-none d-md-inline-block text-xs" target="_blank">admin</a> <div class="flex-fill"></div> <div class="text-muted text-xs"> <a href="http://redoufu.com/732803.html"><i class="iconfont icon-heart mr-1"></i>0</a> </div> </div> </div> </div> </div> </div> <div class="col-6 col-md-4"> <div class="card-post list-item"> <div class="media media-4x3 p-0 rounded"> <a class="media-content" href="http://redoufu.com/36222.html" target="_blank" data-src="/2021/11/20211112075446-e124e.png"></a> </div> <div class="list-content"> <div class="list-body"> <a href="http://redoufu.com/36222.html" target="_blank" class="list-title text-md overflowClip_2"> 客服在线咨询系统(网龙客服在线咨询系统) </a> </div> <div class="list-footer"> <div class="d-flex flex-fill align-items-center"> <a href="http://redoufu.com/author/1" class="flex-avatar mr-1" target="_blank"> </a> <a href="http://redoufu.com/author/1" class="d-none d-md-inline-block text-xs" target="_blank">admin</a> <div class="flex-fill"></div> <div class="text-muted text-xs"> <a href="http://redoufu.com/36222.html"><i class="iconfont icon-heart mr-1"></i>0</a> </div> </div> </div> </div> </div> </div> <div class="col-6 col-md-4"> <div class="card-post list-item"> <div class="media media-4x3 p-0 rounded"> <a class="media-content" href="http://redoufu.com/68631.html" target="_blank" data-src="https://gitee.com/iowen/ioimg/raw/master/screenshots/9.jpg"></a> </div> <div class="list-content"> <div class="list-body"> <a href="http://redoufu.com/68631.html" target="_blank" class="list-title text-md overflowClip_2"> cpfl能源公司利润(cpfl能源股价实情) </a> </div> <div class="list-footer"> <div class="d-flex flex-fill align-items-center"> <a href="http://redoufu.com/author/2" class="flex-avatar mr-1" target="_blank"> </a> <a href="http://redoufu.com/author/2" class="d-none d-md-inline-block text-xs" target="_blank">周周侠</a> <div class="flex-fill"></div> <div class="text-muted text-xs"> <a href="http://redoufu.com/68631.html"><i class="iconfont icon-heart mr-1"></i>0</a> </div> </div> </div> </div> </div> </div> </div> <!-- comments --> </div> <div class="sidebar sidebar-tools col-lg-4 pl-xl-4 d-none d-lg-block"> <div id="hot_sites-2" class="card io-widget-post-list"><div class="card-header widget-header"><h3 class="text-md mb-0"><i class="mr-2 iconfont icon-chart-pc"></i>热门网址</h3></div><div class="card-body"><div class="row row-sm my-n1"><div class="col-lg-12"><div class="nothing mb-4">没有数据!</div></div></div></div></div><div id="new_cat-2" class="card new_cat"><div class="card-header widget-header"><h3 class="text-md mb-0"><i class="mr-2 iconfont icon-category"></i>最新文章</h3></div> <div class="card-body"> <div class="list-grid list-rounded my-n2"> <div class="list-item py-2"> <div class="media media-3x2 rounded col-4 mr-3"> <a class="media-content" href="http://redoufu.com/738820.html" target='_blank' title="视频号有效粉丝人工服务,视频号粉丝1000个" data-src="http://cdn.redoufu.com/wp-content/uploads/2023/12/Pasted-11.png"></a> </div> <div class="list-content py-0"> <div class="list-body"> <a href="http://redoufu.com/738820.html" class="list-title overflowClip_2" target='_blank' rel="bookmark">视频号有效粉丝人工服务,视频号粉丝1000个</a> </div> <div class="list-footer"> <div class="d-flex flex-fill text-muted text-xs"> <time class="d-inline-block">2小时前</time> <div class="flex-fill"></div> </div> </div> </div> </div> <div class="list-item py-2"> <div class="media media-3x2 rounded col-4 mr-3"> <a class="media-content" href="http://redoufu.com/738813.html" target='_blank' title="视频号号小红心是可以购买的吗?视频号小红心1000个多久可以增加上去" data-src="https://gitee.com/iowen/ioimg/raw/master/screenshots/5.jpg"></a> </div> <div class="list-content py-0"> <div class="list-body"> <a href="http://redoufu.com/738813.html" class="list-title overflowClip_2" target='_blank' rel="bookmark">视频号号小红心是可以购买的吗?视频号小红心1000个多久可以增加上去</a> </div> <div class="list-footer"> <div class="d-flex flex-fill text-muted text-xs"> <time class="d-inline-block">3个月前</time> <div class="flex-fill"></div> </div> </div> </div> </div> <div class="list-item py-2"> <div class="media media-3x2 rounded col-4 mr-3"> <a class="media-content" href="http://redoufu.com/738809.html" target='_blank' title="微信投票多少钱一票,微信视频号1000点赞多少钱" data-src="http://cdn.redoufu.com/wp-content/uploads/2023/12/6nskrzB3PLyyUXwP8HMd0vZaeqkpgAAAAASUVORK5CYII.png"></a> </div> <div class="list-content py-0"> <div class="list-body"> <a href="http://redoufu.com/738809.html" class="list-title overflowClip_2" target='_blank' rel="bookmark">微信投票多少钱一票,微信视频号1000点赞多少钱</a> </div> <div class="list-footer"> <div class="d-flex flex-fill text-muted text-xs"> <time class="d-inline-block">3个月前</time> <div class="flex-fill"></div> </div> </div> </div> </div> <div class="list-item py-2"> <div class="media media-3x2 rounded col-4 mr-3"> <a class="media-content" href="http://redoufu.com/738808.html" target='_blank' title="微信拉票多少钱一票,微信人工点赞怎么做" data-src="http://cdn.redoufu.com/wp-content/uploads/2023/12/Pasted-11.png"></a> </div> <div class="list-content py-0"> <div class="list-body"> <a href="http://redoufu.com/738808.html" class="list-title overflowClip_2" target='_blank' rel="bookmark">微信拉票多少钱一票,微信人工点赞怎么做</a> </div> <div class="list-footer"> <div class="d-flex flex-fill text-muted text-xs"> <time class="d-inline-block">3个月前</time> <div class="flex-fill"></div> </div> </div> </div> </div> <div class="list-item py-2"> <div class="media media-3x2 rounded col-4 mr-3"> <a class="media-content" href="http://redoufu.com/738807.html" target='_blank' title="视频号可以买粉丝吗?怎么购买视频号粉丝?" data-src="https://gitee.com/iowen/ioimg/raw/master/screenshots/5.jpg"></a> </div> <div class="list-content py-0"> <div class="list-body"> <a href="http://redoufu.com/738807.html" class="list-title overflowClip_2" target='_blank' rel="bookmark">视频号可以买粉丝吗?怎么购买视频号粉丝?</a> </div> <div class="list-footer"> <div class="d-flex flex-fill text-muted text-xs"> <time class="d-inline-block">3个月前</time> <div class="flex-fill"></div> </div> </div> </div> </div> </div> </div> </div> </div> </div> </div> <footer class="main-footer footer-type-1 text-xs"> <div id="footer-tools" class="d-flex flex-column"> <a href="javascript:" id="go-to-up" class="btn rounded-circle go-up m-1" rel="go-top"> <i class="iconfont icon-to-up"></i> </a> <a href="javascript:" data-toggle="modal" data-target="#search-modal" class="btn rounded-circle m-1" rel="search"> <i class="iconfont icon-search"></i> </a> <a href="javascript:" id="switch-mode" class="btn rounded-circle switch-dark-mode m-1" data-toggle="tooltip" data-placement="left" title="夜间模式"> <i class="mode-ico iconfont icon-light"></i> </a> </div> <div class="footer-inner"> <div class="footer-text"> Copyright © 2021 热豆腐网址之家 <a href="https://beian.miit.gov.cn/">鲁ICP备16030961号-4</a>  Design by <strong><a href="http://redoufu.com/">有趣的网站</a></strong>  <script> var _hmt = _hmt || []; (function() { var hm = document.createElement("script"); hm.src = "https://hm.baidu.com/hm.js?a504da2a5bdb08a6f08c625c6325bf8f"; var s = document.getElementsByTagName("script")[0]; s.parentNode.insertBefore(hm, s); })(); </script> </div> </div> </footer> </div><!-- main-content end --> </div><!-- page-container end --> <div class="modal fade search-modal" id="search-modal"> <div class="modal-dialog modal-lg modal-dialog-centered"> <div class="modal-content"> <div class="modal-body"> <div id="search" class="s-search mx-auto my-4"> <div id="search-list" class="hide-type-list"> <div class="s-type"> <span></span> <div class="s-type-list"> <label for="m_type-baidu" data-id="group-a">常用</label><label for="m_type-baidu1" data-id="group-b">搜索</label><label for="m_type-br" data-id="group-c">工具</label><label for="m_type-zhihu" data-id="group-d">社区</label><label for="m_type-taobao1" data-id="group-e">生活</label><label for="m_type-zhaopin" data-id="group-f">求职</label> </div> </div> <div class="search-group group-a"><span class="type-text text-muted">常用</span><ul class="search-type"><li><input checked="checked" hidden type="radio" name="type2" id="m_type-baidu" value="https://www.baidu.com/s?wd=%s%" data-placeholder="百度一下"><label for="m_type-baidu"><span class="text-muted">百度</span></label></li><li><input hidden type="radio" name="type2" id="m_type-google" value="https://www.google.com/search?q=%s%" data-placeholder="谷歌两下"><label for="m_type-google"><span class="text-muted">Google</span></label></li><li><input hidden type="radio" name="type2" id="m_type-zhannei" value="http://redoufu.com/?post_type=sites&s=%s%" data-placeholder="站内搜索"><label for="m_type-zhannei"><span class="text-muted">站内</span></label></li><li><input hidden type="radio" name="type2" id="m_type-taobao" value="https://s.taobao.com/search?q=%s%" data-placeholder="淘宝"><label for="m_type-taobao"><span class="text-muted">淘宝</span></label></li><li><input hidden type="radio" name="type2" id="m_type-bing" value="https://cn.bing.com/search?q=%s%" data-placeholder="微软Bing搜索"><label for="m_type-bing"><span class="text-muted">Bing</span></label></li></ul></div><div class="search-group group-b"><span class="type-text text-muted">搜索</span><ul class="search-type"><li><input hidden type="radio" name="type2" id="m_type-baidu1" value="https://www.baidu.com/s?wd=%s%" data-placeholder="百度一下"><label for="m_type-baidu1"><span class="text-muted">百度</span></label></li><li><input hidden type="radio" name="type2" id="m_type-google1" value="https://www.google.com/search?q=%s%" data-placeholder="谷歌两下"><label for="m_type-google1"><span class="text-muted">Google</span></label></li><li><input hidden type="radio" name="type2" id="m_type-360" value="https://www.so.com/s?q=%s%" data-placeholder="360好搜"><label for="m_type-360"><span class="text-muted">360</span></label></li><li><input hidden type="radio" name="type2" id="m_type-sogo" value="https://www.sogou.com/web?query=%s%" data-placeholder="搜狗搜索"><label for="m_type-sogo"><span class="text-muted">搜狗</span></label></li><li><input hidden type="radio" name="type2" id="m_type-bing1" value="https://cn.bing.com/search?q=%s%" data-placeholder="微软Bing搜索"><label for="m_type-bing1"><span class="text-muted">Bing</span></label></li><li><input hidden type="radio" name="type2" id="m_type-sm" value="https://yz.m.sm.cn/s?q=%s%" data-placeholder="UC移动端搜索"><label for="m_type-sm"><span class="text-muted">神马</span></label></li></ul></div><div class="search-group group-c"><span class="type-text text-muted">工具</span><ul class="search-type"><li><input hidden type="radio" name="type2" id="m_type-br" value="https://rank.chinaz.com/all/%s%" data-placeholder="请输入网址(不带https://)"><label for="m_type-br"><span class="text-muted">权重查询</span></label></li><li><input hidden type="radio" name="type2" id="m_type-links" value="https://link.chinaz.com/%s%" data-placeholder="请输入网址(不带https://)"><label for="m_type-links"><span class="text-muted">友链检测</span></label></li><li><input hidden type="radio" name="type2" id="m_type-icp" value="https://icp.aizhan.com/%s%" data-placeholder="请输入网址(不带https://)"><label for="m_type-icp"><span class="text-muted">备案查询</span></label></li><li><input hidden type="radio" name="type2" id="m_type-ping" value="https://ping.chinaz.com/%s%" data-placeholder="请输入网址(不带https://)"><label for="m_type-ping"><span class="text-muted">PING检测</span></label></li><li><input hidden type="radio" name="type2" id="m_type-404" value="https://tool.chinaz.com/Links/?DAddress=%s%" data-placeholder="请输入网址(不带https://)"><label for="m_type-404"><span class="text-muted">死链检测</span></label></li><li><input hidden type="radio" name="type2" id="m_type-ciku" value="https://www.ciku5.com/s?wd=%s%" data-placeholder="请输入关键词"><label for="m_type-ciku"><span class="text-muted">关键词挖掘</span></label></li></ul></div><div class="search-group group-d"><span class="type-text text-muted">社区</span><ul class="search-type"><li><input hidden type="radio" name="type2" id="m_type-zhihu" value="https://www.zhihu.com/search?type=content&q=%s%" data-placeholder="知乎"><label for="m_type-zhihu"><span class="text-muted">知乎</span></label></li><li><input hidden type="radio" name="type2" id="m_type-wechat" value="https://weixin.sogou.com/weixin?type=2&query=%s%" data-placeholder="微信"><label for="m_type-wechat"><span class="text-muted">微信</span></label></li><li><input hidden type="radio" name="type2" id="m_type-weibo" value="https://s.weibo.com/weibo/%s%" data-placeholder="微博"><label for="m_type-weibo"><span class="text-muted">微博</span></label></li><li><input hidden type="radio" name="type2" id="m_type-douban" value="https://www.douban.com/search?q=%s%" data-placeholder="豆瓣"><label for="m_type-douban"><span class="text-muted">豆瓣</span></label></li><li><input hidden type="radio" name="type2" id="m_type-why" value="https://ask.seowhy.com/search/?q=%s%" data-placeholder="SEO问答社区"><label for="m_type-why"><span class="text-muted">搜外问答</span></label></li></ul></div><div class="search-group group-e"><span class="type-text text-muted">生活</span><ul class="search-type"><li><input hidden type="radio" name="type2" id="m_type-taobao1" value="https://s.taobao.com/search?q=%s%" data-placeholder="淘宝"><label for="m_type-taobao1"><span class="text-muted">淘宝</span></label></li><li><input hidden type="radio" name="type2" id="m_type-jd" value="https://search.jd.com/Search?keyword=%s%" data-placeholder="京东"><label for="m_type-jd"><span class="text-muted">京东</span></label></li><li><input hidden type="radio" name="type2" id="m_type-xiachufang" value="https://www.xiachufang.com/search/?keyword=%s%" data-placeholder="下厨房"><label for="m_type-xiachufang"><span class="text-muted">下厨房</span></label></li><li><input hidden type="radio" name="type2" id="m_type-xiangha" value="https://www.xiangha.com/so/?q=caipu&s=%s%" data-placeholder="香哈菜谱"><label for="m_type-xiangha"><span class="text-muted">香哈菜谱</span></label></li><li><input hidden type="radio" name="type2" id="m_type-12306" value="https://www.12306.cn/?%s%" data-placeholder="12306"><label for="m_type-12306"><span class="text-muted">12306</span></label></li><li><input hidden type="radio" name="type2" id="m_type-kd100" value="https://www.kuaidi100.com/?%s%" data-placeholder="快递100"><label for="m_type-kd100"><span class="text-muted">快递100</span></label></li><li><input hidden type="radio" name="type2" id="m_type-qunar" value="https://www.qunar.com/?%s%" data-placeholder="去哪儿"><label for="m_type-qunar"><span class="text-muted">去哪儿</span></label></li></ul></div><div class="search-group group-f"><span class="type-text text-muted">求职</span><ul class="search-type"><li><input hidden type="radio" name="type2" id="m_type-zhaopin" value="https://sou.zhaopin.com/jobs/searchresult.ashx?kw=%s%" data-placeholder="智联招聘"><label for="m_type-zhaopin"><span class="text-muted">智联招聘</span></label></li><li><input hidden type="radio" name="type2" id="m_type-51job" value="https://search.51job.com/?%s%" data-placeholder="前程无忧"><label for="m_type-51job"><span class="text-muted">前程无忧</span></label></li><li><input hidden type="radio" name="type2" id="m_type-lagou" value="https://www.lagou.com/jobs/list_%s%" data-placeholder="拉勾网"><label for="m_type-lagou"><span class="text-muted">拉勾网</span></label></li><li><input hidden type="radio" name="type2" id="m_type-liepin" value="https://www.liepin.com/zhaopin/?key=%s%" data-placeholder="猎聘网"><label for="m_type-liepin"><span class="text-muted">猎聘网</span></label></li></ul></div> </div> <form action="http://redoufu.com?s=" method="get" target="_blank" class="super-search-fm"> <input type="text" id="m_search-text" class="form-control smart-tips search-key" zhannei="" autocomplete="off" placeholder="输入关键字搜索" style="outline:0"> <button type="submit"><i class="iconfont icon-search"></i></button> </form> <div class="card search-smart-tips" style="display: none"> <ul></ul> </div> </div> <div class="px-1 mb-3"><i class="text-xl iconfont icon-hot mr-1" style="color:#f1404b;"></i><span class="h6">热门推荐: </span></div> <div class="mb-3"> <li id="menu-item-511" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-511"><a href="http://redoufu.com/tijiao">提交收录</a></li> <li id="menu-item-262" class="menu-item menu-item-type-taxonomy menu-item-object-favorites menu-item-262"><a href="http://redoufu.com/favorites/maimaimai">买买买</a></li> <li id="menu-item-263" class="menu-item menu-item-type-taxonomy menu-item-object-favorites menu-item-263"><a href="http://redoufu.com/favorites/daquan">看电影</a></li> <li id="menu-item-264" class="menu-item menu-item-type-taxonomy menu-item-object-favorites menu-item-264"><a href="http://redoufu.com/favorites/kansite-ziyuansite">看美女</a></li> </div> </div> <div style="position: absolute;bottom: -40px;width: 100%;text-align: center;"><a href="javascript:" data-dismiss="modal"><i class="iconfont icon-close-circle icon-2x" style="color: #fff;"></i></a></div> </div> </div> </div> <script type='text/javascript' id='toc-front-js-extra'> /* <![CDATA[ */ var tocplus = {"visibility_show":"\u663e\u793a","visibility_hide":"\u9690\u85cf","width":"100%"}; /* ]]> */ </script> <script type='text/javascript' src='http://cdn.redoufu.com/wp-content/plugins/table-of-contents-plus/front.min.js?ver=2106' id='toc-front-js'></script> <script type='text/javascript' src='http://cdn.redoufu.com/wp-content/themes/onenav/js/clipboard.min.js?ver=3.1009' id='clipboard-mini-js'></script> <script type='text/javascript' src='http://cdn.redoufu.com/wp-content/themes/onenav/js/popper.min.js?ver=3.1009' id='popper-js'></script> <script type='text/javascript' src='http://cdn.redoufu.com/wp-content/themes/onenav/js/bootstrap.min.js?ver=3.1009' id='bootstrap-js'></script> <script type='text/javascript' src='http://cdn.redoufu.com/wp-content/themes/onenav/js/theia-sticky-sidebar.js?ver=3.1009' id='sidebar-js'></script> <script type='text/javascript' src='http://cdn.redoufu.com/wp-content/themes/onenav/js/lazyload.min.js?ver=3.1009' id='lazyload-js'></script> <script type='text/javascript' src='http://cdn.redoufu.com/wp-content/themes/onenav/js/jquery.fancybox.min.js?ver=3.1009' id='lightbox-js-js'></script> <script type='text/javascript' id='appjs-js-extra'> /* <![CDATA[ */ var theme = {"ajaxurl":"http:\/\/redoufu.com\/wp-admin\/admin-ajax.php","addico":"http:\/\/redoufu.com\/wp-content\/themes\/onenav\/images\/add.png","order":"asc","formpostion":"top","defaultclass":"io-grey-mode","isCustomize":"0","icourl":"https:\/\/api.iowen.cn\/favicon\/","icopng":".png","urlformat":"1","customizemax":"10","newWindow":"1","lazyload":"1","minNav":"1","loading":"0","hotWords":"baidu","classColumns":" col-sm-6 col-md-4 col-xl-5a col-xxl-6a ","apikey":"TWpBeU1USTJNemd4TWpZM0d6RS9oVlZOMFNEVkNkRVZpVkZCWU5qUkVUV0owVW5sSlJqTjVabkJ1TmtadQ==","isHome":"","version":"3.1009"}; var localize = {"liked":"\u60a8\u5df2\u7ecf\u8d5e\u8fc7\u4e86!","like":"\u8c22\u8c22\u70b9\u8d5e!","networkerror":"\u7f51\u7edc\u9519\u8bef --.","selectCategory":"\u4e3a\u4ec0\u4e48\u4e0d\u9009\u5206\u7c7b\u3002","addSuccess":"\u6dfb\u52a0\u6210\u529f\u3002","timeout":"\u8bbf\u95ee\u8d85\u65f6\uff0c\u8bf7\u518d\u8bd5\u8bd5\uff0c\u6216\u8005\u624b\u52a8\u586b\u5199\u3002","lightMode":"\u65e5\u95f4\u6a21\u5f0f","nightMode":"\u591c\u95f4\u6a21\u5f0f","editBtn":"\u7f16\u8f91","okBtn":"\u786e\u5b9a","urlExist":"\u8be5\u7f51\u5740\u5df2\u7ecf\u5b58\u5728\u4e86 --.","cancelBtn":"\u53d6\u6d88","successAlert":"\u6210\u529f","infoAlert":"\u4fe1\u606f","warningAlert":"\u8b66\u544a","errorAlert":"\u9519\u8bef","extractionCode":"\u7f51\u76d8\u63d0\u53d6\u7801\u5df2\u590d\u5236\uff0c\u70b9\u201c\u786e\u5b9a\u201d\u8fdb\u5165\u4e0b\u8f7d\u9875\u9762\u3002"}; /* ]]> */ </script> <script type='text/javascript' src='http://cdn.redoufu.com/wp-content/themes/onenav/js/app.min.js?ver=3.1009' id='appjs-js'></script> <script type='text/javascript' src='http://cdn.redoufu.com/wp-includes/js/comment-reply.min.js?ver=5.9.1' id='comment-reply-js'></script> <script type='text/javascript' src='http://cdn.redoufu.com/wp-content/themes/onenav/js/comments-ajax.js?ver=3.1009' id='comments-ajax-js'></script> <!-- 自定义代码 --> <!-- end 自定义代码 --> </body> </html> <!-- This website is like a Rocket, isn't it? Performance optimized by WP Rocket. Learn more: https://wp-rocket.me - Debug: cached@1713808026 -->