从 Blogger 的联系页面中删除 Facebook Like 按钮

发布于 2024-11-19 03:19:23 字数 1204 浏览 2 评论 0原文

我刚刚向我的博客添加了一个“赞”按钮,起初它不起作用,但现在可以了,但它显示在我在博客上创建的所有页面上,包括联系页面 http://scheissemag.blogspot.com/p/contact.html,这让我很困扰,我想隐藏它或删除 div。 对于按钮代码,我使用这个:(我在

    <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>

但它总是在那里!

I just added a like button to my blogger, first it didn't work, but now it does,but it shows on all the pages I created on blogger Including the Contact Page http://scheissemag.blogspot.com/p/contact.html, which bothers me and I want to hide it or remove the div.
For the button code I use this one : (which I installed after <div class='post-footer-line post-footer-line2'/> )

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

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

I tried to remove with the code I found in this website after searching :

<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>

But it's always there !

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

空城仅有旧梦在 2024-11-26 03:19:23

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

Instead of removing it, can you just set its visible property to FALSE?

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文