我刚给我的博客添加了一个类似的按钮,首先它不起作用,但现在确实如此,但它显示在我在博客上创建的所有页面上,包括联系页面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('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>
我尝试使用搜索后在本网站找到的代码删除:
<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>
但它总是在那里!
答案 0 :(得分:0)
您可以将其visible
属性设置为FALSE
,而不是将其删除吗?