我正在使用 html 5 标签在我的网站上嵌入 google plus 1 按钮
<div class="g-plusone" data-size="tall"></div>
它适用于所有页面,除非页面上嵌入了视频。我收到一个通用按钮错误(在网络流量中看不到好的日志),然后按钮重定向到:https ://support.google.com/plus/answer/1199142?p=plusone_button_error&rd=1
这一切都非常简单,所以我很难锁定问题。
以下是发生错误的页面示例:http ://www.trendhunter.com/keynote/enlightening-keynote
以下是按钮似乎可以正常工作的页面示例: http ://www.trendhunter.com/trends/glutinous-fast-foods-mcdonalds-china-offers-the-new-sausage-double-beef-车针
我正在使用此脚本加载 gplus:
(function() { var po = document.createElement('script'); po.type = 'text/javascript'; po.async = true; po.src = ' https://apis.google.com/js/ plusone.js '; var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(po, s); })();
之后我在 .load 中加载按钮的 html,我将 google plus 脚本移动到 .load 的回调中,但它似乎没有任何效果。