我有这个代码
<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 按钮。
我该怎么做?
非常感谢!