写了一篇 [积累] CSS 点滴学习 ,效果不错,再来一篇JS相关的:
1.简单的改 none-->block ,比如文章下面的发表评论按钮
1 2 3 4 5 6 7 8 9 10 11 | CSS: <a href= "javascript:void(0)" onclick= "duoshuo_comment()" class= "me-button" > 发表评论</a> JS: function duoshuo_comment(){ if (document.getElementById( "ds-thread" ).style.display== "block" ){ document.getElementById( "ds-thread" ).style.display= "none" ; } else { document.getElementById( "ds-thread" ).style.display= "block" ; } } |