我想设置googleplus +1按钮来处理不同于代码所在位置的URL。
不清楚from documentation,是否写
<script type="text/javascript" src="https://apis.google.com/js/plusone.js"></script>
<g:plusone href="myurl"></g:plusone>
或
<script type="text/javascript" src="https://apis.google.com/js/plusone.js"></script>
<g:plusone data-href="myurl"></g:plusone>
即。标记名称为href
或data-href
。
我的旧代码包含href
,size
和count
,但显然无效。这些标签是否过时了?
更新
标签更改没有帮助。
更新2
不,文件不清楚。在“设置+1目标URL”部分的第1点中,写入了
即。引用href
属性。不幸的是,下表中没有描述href
属性。
答案 0 :(得分:1)
作为自定义标记:
<g:plusone data-href='your-url-here...'></g:plusone>
作为HTML5标记:
<div class="g-plusone" data-href="your-url-here..."></div>
如果您的页面上只有一个+1按钮,您还可以为其设置规范网址,它将用于您的+1按钮。它位于您<head>
的文档中:
<link rel="canonical" href="page-url-here" />