4

我想知道在按下推文和 google+ 按钮时是否可以显示一些预定义的文本。我知道这对 facebook 来说是可能的,但我找不到任何可用于 google+ 按钮的代码。

我为我的 facebook 分享按钮获得的代码(已经在工作)是:

<a title="send to Facebook"
 href="http://www.facebook.com/sharer.php?s=100&p[title]=EHBE Groningen&p[summary]=this is the text to share http://sharelink.com&p[url]=www.example.nl&p[images][0]=example_image"
 target="_blank">
 <span>
  <img width="14" height="14" src="'icons/fb.gif" alt="Facebook" /> Facebook 
 </span>
</a>

我目前为我的推文按钮(也有效)获得的代码是:

<a href="http://twitter.com/?status=text to tweet" onclick="javascript:_gaq.push(['_trackEvent','outbound-article','http://twitter.com']);" target="_blank">Tweet over deze pagina</a>

所以我的问题是,是否可以在为某种 google + 按钮点赞、分享或推特页面或文章时显示预定义的文本。

编辑


我希望能够更改实际单击按钮时出现的文本。所以按钮本身很好。

4

2 回答 2

2

你无法做到 facebook 和 twitter 提供的方式,从我可以收集到的查看他们的Snippet 文档

你能做的,是这样的:

<!-- Update your html tag to include the itemscope and itemtype attributes. -->
<html itemscope itemtype="http://schema.org/Article">

<!-- Add the following three tags inside head. -->
<meta itemprop="name" content="my title">
<meta itemprop="description" content="a description">
<meta itemprop="image" content="http://my-url.com/logo.png">

我意识到如果您的内容是通过AJAX. 在这种情况下,您可以执行以下操作:

<body itemscope itemtype="http://schema.org/Product">
  <h1 itemprop="name">my title</h1>
  <img itemprop="image" src="http://my-url.com/logo.png" />
  <p itemprop="description">a description</p>
</body>
于 2013-04-02T09:59:17.493 回答
1

https://developers.google.com/+/web/+1button/

阅读并添加这些标签/代码。

于 2013-04-02T09:22:44.797 回答