我有以下代码,
<a href="https://plus.google.com/share?" onclick="javascript:window.open(this.href+'url={'+window.location.href+'}',
'', 'menubar=no,toolbar=no,resizable=yes,scrollbars=yes,height=600,width=600');return false;"><img src="google.png" alt="Share on Google Plus"></a>
完美无缺。我正在用jquery和html开发一个简单的游戏,我想做的是,一旦游戏结束,允许玩家在google plus上分享他们的分数。以上内容仅分享页面。我该怎么做呢?
答案 0 :(得分:0)
分享给Google+的内容由markup of the page being shared控制。
<body itemscope itemtype="http://schema.org/Thing">
<h1 itemprop="name">Awesome Game 5000</h1>
<img itemprop="image" src="{image-url}" />
<p itemprop="description">Super good score of {score}.</p>
</body>
为了动态更改人们分享的分数,您必须根据网址动态更改分数。例如。 https://example.com/shared/5343
会使用5343
替换页面上的分数。