首頁  >  文章  >  web前端  >  HTML如何實作隱藏文字框

HTML如何實作隱藏文字框

醉折花枝作酒筹
醉折花枝作酒筹轉載
2021-04-26 11:29:153592瀏覽

本篇文章介紹HTML隱藏文字方塊的方式給大家。有一定的參考價值,有需要的朋友可以參考一下,希望對大家有幫助。

HTML如何實作隱藏文字框

  1、<input type="hidden" value=""></input>//对所有的文本框都起作用(隐藏域,多用于存数据)
  2、<input type="text" value="" style="display:none"></input>//对象隐藏后,对象不占任何空间
  3、<input type="text" value="" style="visibility:hidden"></input>//对象隐藏后,还有占有相应的空间大小
  4、<input type="text" value="" style"width:0;height:0;"></input>

推薦學習:html影片教學

以上是HTML如何實作隱藏文字框的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文轉載於:csdn.net。如有侵權,請聯絡admin@php.cn刪除