小编典典

用AJAX刷新的页面上的Google加一按钮

ajax

有人知道Google加一按钮的某些代码可以在用AJAX刷新的页面上工作吗?使用Facebook非常简单,但是我找不到关于Google的任何文档。

谢谢。


阅读 257

收藏
2020-07-26

共1个答案

小编典典

我也在寻找这个,发现了这个

<!-- Place this tag in your head or just before your close body tag -->
<script type="text/javascript" src="https://apis.google.com/js/plusone.js">
  {parsetags: 'explicit'}
</script>

<!-- Place this tag where you want the +1 button to render -->
<g:plusone></g:plusone>

<!-- Place this render call where appropriate -->
<script type="text/javascript">gapi.plusone.go();</script>

gapi.plusone.go(); 放置此代码,按钮将出现

2020-07-26