隐藏Html元素最常用的方法

隐藏Html元素最常用的方法

1,使用css

复制代码
代码如下:

style="display:none;" 


2.使用javascript

复制代码
代码如下:

item.style.display='none'; 

推荐阅读