我想在我的网站上添加“Google +1”按钮。我添加元素
<html itemscope itemtype="http://schema.org/Other">
<meta itemprop="name" content="title">
<meta itemprop="description" content="erterter">
<meta itemprop="image" content="http://www.mmaer.com">
到我的页面。它在单语言页面上工作正常,但在多语言情况下工作不正常。我的页面按浏览器语言定义页面语言,描述填写依赖于该语言。所以,即使我看到页面代码:
<meta itemprop="name" content="Magic Screenshot">
<meta itemprop="description" content="Russian text">
<meta itemprop="image" content="http://www.magicscreenshot.com/Content/Images/error_FileNotFound_small.jpg">
当我点击“Google +1”时,我会看到英文文字。如何解决?
我正在通过以下代码添加此按钮
<div style="text-align: right;">
<div class="g-plusone" data-size="medium" data-annotation="inline" data-width="300" data-href="http://wwww.com"></div>
<script type="text/javascript">
window.___gcfg = { lang: 'ru' };
(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>
</div>