如何使用JavaScript更改类的显示?

前端之家收集整理的这篇文章主要介绍了如何使用JavaScript更改类的显示?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

所以我有这个代码

    function show_all()
    {
    	document.getElementByClassName('login').style.display = 'inline';
    	document.getElementById('button-hide').style.display = 'inline';
    	document.getElementById('button-show').style.display = 'none';
    };
    function hide_all()
    {
    	document.getElementByClassName('login').style.display = 'none';
    	document.getElementById('button-hide').style.display = 'none';
    	document.getElementById('button-show').style.display = 'inline';
    };

猜你在找的HTML相关文章