Facebook 点赞按钮,区域设置不起作用
用户可以更改我的网页上的语言,我希望根据当前语言更改 fb like 按钮的文本。我使用 iframe 方法并阅读了来自 fb 的文档,但这不起作用:
<iframe
src='http://www.facebook.com/plugins/like.php?locale=en-US&href=http%3A%2F%2Fwww.example.com&layout=button_count&show_faces=false&width=80&action=recommend&colorscheme=light&height=10'
scrolling='no' frameborder='0'
style='border:none; overflow:hidden;
width:80px; height:80px;'
allowTransparency='true'></iframe>
我在上面的 src 中设置了 html lang='en-US' 和 locale=en-US ,但文本仍然以我的 Windows 区域设置语言显示。
我做错了什么?
The user can change language on my webpage and I wish to change the text of the fb like button according to the current language. I use the iframe method and have read the documentation from fb but this is not working:
<iframe
src='http://www.facebook.com/plugins/like.php?locale=en-US&href=http%3A%2F%2Fwww.example.com&layout=button_count&show_faces=false&width=80&action=recommend&colorscheme=light&height=10'
scrolling='no' frameborder='0'
style='border:none; overflow:hidden;
width:80px; height:80px;'
allowTransparency='true'></iframe>
I have set html lang='en-US' and locale=en-US in the src above but still the text display in my windows locale language.
What am I doing wrong?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果我没记错的话(iframe 地址中的 locale=)应该是 en_US 而不是 en-US。
-迈克尔
If i remember right it (the locale= in the iframe address) should be en_US not en-US.
-michael
您可以在此处找到 Facebook 支持的所有区域设置的完整列表:
http://www.facebook。 com/translations/FacebookLocales.xml
祝你好运!
You can find a complete listing of all the locales supported by Facebook here:
http://www.facebook.com/translations/FacebookLocales.xml
Good luck!