我們希望通過Google自定義搜索實施Google附加鏈接搜索框。在谷歌documentation,我發現我們需要包括下面的代碼,使站點鏈接搜索框Google自定義搜索的Google附加鏈接搜索框
<script type="application/ld+json">
{
"@context": "http://schema.org",
"@type": "WebSite",
"url": "https://www.example-petstore.com/",
"potentialAction": {
"@type": "SearchAction",
"target": "https://query.example-petstore.com/search?q={search_term_string}",
"query-input": "required name=search_term_string"
}
}
</script>
但我們在上面的性質「目標」節點卡住。由於我們沒有自己的搜索頁面,因此我們希望使用Google自定義搜索,因此我應該填寫這個「目標」節點的值。
我們已經爲我們的網站創建了Google自定義搜索引擎。發現下面的代碼有
<script>
(function() {
var cx = 'CX_ID';
var gcse = document.createElement('script');
gcse.type = 'text/javascript';
gcse.async = true;
gcse.src = (document.location.protocol == 'https:' ? 'https:' : 'http:') +
'//www.google.com/cse/cse.js?cx=' + cx;
var s = document.getElementsByTagName('script')[0];
s.parentNode.insertBefore(gcse, s);
})();
</script>
<gcse:search></gcse:search>
請建議,如何指向站點鏈接搜索框代碼谷歌定製搜索。
感謝
也許[this](http://moz.com/blog/sitelinks-search-box)會幫助你。 – Shishdem 2015-03-02 11:43:06
感謝@Shishdem的回覆。但是這個鏈接也指向相同的Google [文檔](https://developers.google.com/structured-data/slsb-overview):( – pankaj 2015-03-02 12:35:47
任何其他建議?? – pankaj 2015-03-03 10:08:48