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変数を追加したい。

どうすればいいですか?

どうもありがとうございます!

4

1 に答える 1

1

私はなんとか開発者向けドキュメントを見つけることができました。少し紛らわしいですが、<g:plusone>タグのhref属性としてURLを入力する必要があります。例えば:

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