隐藏input的三种方法

转载:https://blog.csdn.net/qq_38605328/article/details/102886768

//隐藏不留痕迹
<input type="hidden" />
<input type="text" style="display:none" />
 
//占位隐藏,会留下空白
<input type="text" style="visibility: hidden;" />
原文地址:https://www.cnblogs.com/brithToSpring/p/13879052.html