検索キーワードを含む get パラメータを持つページを作成したいと考えています。Web サイトに入ると、Firefox は検索機能を備えた適切な Web サイトを認識し、数回クリックするだけでそれらを追加できます。(アドレスバーのドロップダウンメニュー) 私のウェブサイトは、ブラウザのアドレスバーまたはクロムのオムニバーから誰でも使用できる検索機能を持っていることをどのようにしてFirefoxまたはChromeに伝えることができますか?
質問する
98 次
1 に答える
3
このメタタグが必要です
<link rel="search" type="application/opensearchdescription+xml" href="[your url]/opensearch.xml" title="[Your title]" />
詳細については、http://www.opensearch.org/Homeをご覧ください。
あなたのxmlファイルは次のようになります
<OpenSearchDescription xmlns="http://a9.com/-/spec/opensearch/1.1/">
<ShortName>[Name]</ShortName>
<Description>[Desc]</Description>
<Image height="16" width="16" type="image/x-icon">[ico]</Image>
<Image height="64" width="64" type="image/png">[png]</Image>
<Url type="text/html" method="get" template="[url]/?q={searchTerms}"/>
<Url type="application/opensearchdescription+xml" rel="self" template="[url]/opensearch.xml"/>
</OpenSearchDescription>
于 2012-09-24T14:46:13.110 に答える