我正在使用以下内容在我的网站上添加带有 facebook 按钮的登录:
<div class="fb-login-button" data-show-faces="false" data-width="100"
data-max-rows="2" data-size="large" data-scope="xxx">Start Here</div>
这在 IE9 中运行良好,但在 Safari/Chrome 中不起作用。相反,我得到以下按钮:
请注意 Facebook 徽标是如何丢失的?这是因为在 webkit 中,facebook 生成了以下行:
<i class="pluginFaviconButtonIcon img sp_login-button sx_login-button_"></i>
错误的部分是缺少大小说明符的“sx_login-button_”,在本例中为“大”。在 IE9 中,这是“sx_login-button_large”,它可以工作。
关于为什么这不起作用 webkit 的任何想法?