1. 首页
  2. 区块链
  3. Dapp
  4. html 文本框(text)不可用只读的多种实现方法

html 文本框(text)不可用只读的多种实现方法

上传者: 2020-12-16 12:54:23上传 PDF文件 21.89KB 热度 12次
方法一: <input id= "File1" type= "text" disabled/> 不可用 方法二: <input id= "File1" type= "text" readonly/> 只读 方法三: <input id= "File1" type= "text" style="display:none"/> 隐藏(但占位置) 方法四: <input id= "File1" type= "text" style="visibility:hidden"/> 隐藏(不占位置) 有时候,我们希望表单中的文本框是只读的,让用户不能修改其中
用户评论