今天在百度上无意发现了mcbbs里面的折叠按钮代码,发现还挺好玩的,下面给大家分享一下

Code

1
<div style='overflow:hidden;'><div><input title="点击我打开" type="button" value="展开折叠内容" onClick="n = this.parentNode.parentNode.lastChild;if(n.style.display == 'none') {n.style.display = 'block'; this.value='收起折叠内容'} else {n.style.display = 'none'; this.value='展开折叠内容'} return false;"/></div><div style="display: none;border-style:groove;padding-right:5px;"><table><td>此处为你想要隐藏的文字</td></table></div></div>