此功能由所谓的 OpenSearch 提供支持。它允许您指定在搜索网站时应该如何形成查询。您可以在此处阅读文档:http ://www.opensearch.org/Home
例如,StackOverflow 在其 HTML 源代码中有以下内容:
<link rel="search" type="application/opensearchdescription+xml" title="Stack Overflow" href="/opensearch.xml">
如果您随后打开文件 /opensearch.xml,您可以看到以下内容:
<?xml version="1.0" encoding="UTF-8" ?>
<OpenSearchDescription xmlns="http://a9.com/-/spec/opensearch/1.1/" xmlns:moz="http://www.mozilla.org/2006/browser/search/">
<ShortName>Stack Overflow</ShortName>
<Description>Search Stack Overflow: Q&A for professional and enthusiast programmers</Description>
<InputEncoding>UTF-8</InputEncoding>
<Image width="16" height="16" type="image/x-icon">http://sstatic.net/stackoverflow/img/favicon.ico</Image>
<Url type="text/html" method="get" template="http://stackoverflow.com/search?q={searchTerms}"></Url>
</OpenSearchDescription>
最重要的部分是第 7 行中指定搜索词字符串的行。