根据https://developers.google.com/webmasters/richsnippets/sitelinkssearch中的文档,我正在尝试在 Google 上实现附加链接搜索框的片段。
我的实现如下:
<script type="application/ld+json">
{
"@context": "http://schema.org",
"@type": "WebSite",
"url": "http://www.petmd.com/",
"potentialAction": {
"@type": "SearchAction",
"target": "http://www.petmd.com/search?Q={Q}",
"query-input": "required name=Q"
}
}
</script>
如果您将 {Q} 替换为关键字并且搜索字段的名称为“Q”,则目标有效。这个实现有问题吗?
我已将代码放在页面底部的 body 标记内。