0

我有这个代码

<div class="google_button">
   <g:plusone size="medium" annotation="none"></g:plusone>
   <% case I18n.locale.to_s %>
   <% when 'en' %>
    <script type="text/javascript">
      (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);
      })();
    </script>
    <% when 'es'%>
     <script type="text/javascript">
      window.___gcfg = {lang: 'es'};
      (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);
      })();
     </script>
   <% end %>
  </div>

我在一个变量中url有一个 url:

url = "http://www.mydomain.com/my_custom_url"

我想将此 url 变量添加到这个 google plus 按钮。

我该怎么做?

非常感谢!

4

1 回答 1

1

我设法找到了开发者文档。这有点令人困惑,但您只需要将 URL 作为<g:plusone>标签的 href 属性。例如:

<g:plusone size="medium" annotation="none" href="the url!"></g:plusone>
于 2012-11-08T21:23:46.397 回答