gpt4 book ai didi

html - 在共享按钮中显示默认文本?

转载 作者:搜寻专家 更新时间:2023-10-31 08:34:20 24 4
gpt4 key购买 nike

我想知道是否可以在按下推文和 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 + 按钮点赞、分享或发推文页面或文章时显示预定义的文本。

编辑


我希望能够更改在您实际单击按钮时出现的文本。所以按钮本身没问题。

最佳答案

你不能按照 facebook 和 twitter 提供的方式来做,从我可以收集到的信息来看他们的 Snippet documentation .

你能做的,是这样的:

<!-- 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>

关于html - 在共享按钮中显示默认文本?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15542214/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com