javascript控制页面控件隐藏显示的两种方法
方法的不同之处在于控件隐藏后是否还在页面上有占位 

方法一: 
document.all[PanelSMS].style.visibility=hidden
document.all[
PanelSMS].style.visibility=visible

方法二: 
document.all[PanelSMS].style.display=none
document.all[
PanelSMS].style.display=inline

方法一隐藏后 页面的位置还被控件占用 只是不显示 类似于.net验证控件的Display=Static 
方法二隐藏后 页面的位置不被占用 类似于.net验证控件的Display
=Dynamic

版权声明:本文为coln原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。
本文链接:https://www.cnblogs.com/coln/articles/1535013.html