是否可以隐藏Facebook Like按钮上的计数器而不隐藏弹出的评论框?这个较老的线程似乎暗示能够这样做但是我在这里尝试的例子都不允许出现评论。
Facebook Like-Button - hide count?
建议:在发布解决方案之前,请对其进行测试。如果它有效,不仅发布CSS,还发布HTML的示例。
谢谢!
答案 0 :(得分:0)
作为Like按钮的替代方案,有一个对话框可以执行Feed发布
请参阅:https://developers.facebook.com/docs/reference/dialogs/feed/
<html xmlns="http://www.w3.org/1999/xhtml"
xmlns:fb="https://www.facebook.com/2008/fbml">
<head>
<title>My Feed Dialog Page</title>
</head>
<body>
<div id='fb-root'></div>
<script src='http://connect.facebook.net/en_US/all.js'></script>
<p><a onclick='postToFeed(); return false;'>Post to Feed</a></p>
<p id='msg'></p>
<script>
FB.init({appId: "YOUR_APP_ID", status: true, cookie: true});
function postToFeed() {
// calling the API ...
var obj = {
method: 'feed',
link: 'https://developers.facebook.com/docs/reference/dialogs/',
picture: 'http://fbrell.com/f8.jpg',
name: 'Facebook Dialogs',
caption: 'Reference Documentation',
description: 'Using Dialogs to interact with users.'
};
function callback(response) {
document.getElementById('msg').innerHTML = "Post ID: " + response['post_id'];
}
FB.ui(obj, callback);
}
</script>
</body>
</html>
请注意,上面的示例假定用户已经登录并已授权您的应用