我刚刚添加了一个喜欢按钮到我的博客,首先它没有工作,但现在它做了,但它显示在我在博客上创建的所有页面上,包括联系页面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>
与其将其删除,不如将其visible
属性设置为FALSE
?