主頁 > 知識(shí)庫 > html 文本框(text)不可用只讀的多種實(shí)現(xiàn)方法

html 文本框(text)不可用只讀的多種實(shí)現(xiàn)方法

熱門標(biāo)簽:水經(jīng)注萬能地圖標(biāo)注 新鄉(xiāng)機(jī)器人外呼系統(tǒng) 青海保險(xiǎn)智能外呼系統(tǒng)商家 梧州地圖標(biāo)注app 禹州電話外呼系統(tǒng) 營口400電話申請(qǐng) 最簡(jiǎn)單的百度地圖標(biāo)注店鋪 錦州企業(yè)外呼系統(tǒng) AI外呼系統(tǒng) 價(jià)格
方法一: <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"/> 隱藏(不占位置)

有時(shí)候,我們希望表單中的文本框是只讀的,讓用戶不能修改其中的信息,如使<input type="text" name="input1" value="中國"> 的內(nèi)容,"中國"兩個(gè)字不可以修改。實(shí)現(xiàn)的方式歸納一下,有如下幾種。

方法1: onfocus=this.blur()

復(fù)制代碼
代碼如下:

<input type="text" name="input1" value="中國" onfocus=this.blur()>

方法2:readonly

復(fù)制代碼
代碼如下:

<input type="text" name="input1" value="中國" readonly>
<input type="text" name="input1" value="中國" readonly="true">

方法3: disabled

復(fù)制代碼
代碼如下:

<input type="text" name="input1" value="中國" disabled>

標(biāo)簽:懷化 青島 哈密 荊門 潮州 山南 延邊 昭通

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《html 文本框(text)不可用只讀的多種實(shí)現(xiàn)方法》,本文關(guān)鍵詞  html,文本,框,text,不,可用,;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問題,煩請(qǐng)?zhí)峁┫嚓P(guān)信息告之我們,我們將及時(shí)溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《html 文本框(text)不可用只讀的多種實(shí)現(xiàn)方法》相關(guān)的同類信息!
  • 本頁收集關(guān)于html 文本框(text)不可用只讀的多種實(shí)現(xiàn)方法的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章