Created
September 10, 2013 02:19
-
-
Save fordlee404/6504247 to your computer and use it in GitHub Desktop.
显示/隐藏元素
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function toggle(obj) { | |
var el = document.getElementById(obj); | |
if ( el.style.display != 'none' ) { | |
el.style.display = 'none'; | |
} | |
else { | |
el.style.display = ''; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment