javascript設定表單唯讀的方法:1、透過「onfocus=this.blur()」方法設定;2、透過readonly實現;3、透過disabled設定。
本文操作環境:windows7系統、javascript1.8.5版、Dell G3電腦。
javascript怎麼設定表單只讀?
javascript:讓表單文字方塊只讀,不可編輯的方法
有時候,我們希望表單中的文字方塊是唯讀的,讓使用者不能修改其中的訊息,如使 的內容,"中國"兩個字不可以修改。實現的方式歸納一下,有以下幾種。
方法1: onfocus=this.blur()
<input type="text" name="input1" value="中国" onfocus=this.blur()>
方法2:readonly
<input type="text" name="input1" value="中国" readonly> <input type="text" name="input1" value="中国" readonly="true">
方法3: disabled
<input type="text" name="input1" value="中国" disabled>
【相關推薦:javascript高階教學】
以上是javascript怎麼設定表單只讀的詳細內容。更多資訊請關注PHP中文網其他相關文章!