从Blogger上的联系人页面中删除Facebook赞按钮

时间:2011-07-07 19:52:05

标签: facebook button hide facebook-like

我刚给我的博客添加了一个类似的按钮,首先它不起作用,但现在确实如此,但它显示在我在博客上创建的所有页面上,包括联系页面http://scheissemag.blogspot.com/p/contact.html,这让我很困扰我想隐藏它或删除div。 对于按钮代码我使用这个:(我在<div class='post-footer-line post-footer-line2'/>之后安装)

    <div>
<div id='fb-root'/>
<script>
    (function() {
    var e = document.createElement(&#39;script&#39;);
    e.src = document.location.protocol + &#39;//connect.facebook.net/fr_FR/all.js#xfbml=1&#39;;
    e.async = true;
    document.getElementById(&#39;fb-root&#39;).appendChild(e);
    }());

        </script>
        <fb:like action='like' colorscheme='light' expr:href='data:post.url' font='arial' layout='standard' send='false' show_faces='false'/> </div>

我尝试使用搜索后在本网站找到的代码删除:

<div id="fr-root"> (I tired LikeDiv too)
    my div
</div>
<script>
    {
        // Remove the element from the dom
        var Node1 = document.getElementById('likeDiv');
        Node1.removeChild(Node1.childNodes[0]);
    }
</script>

但它总是在那里!

1 个答案:

答案 0 :(得分:0)

您可以将其visible属性设置为FALSE,而不是将其删除吗?