HTML的input中type屬性的屬性值包括哪些

2021-06-06 16:08:46 字數 520 閱讀 3957

1.取消按鈕按下時的虛線框,在input裡新增屬性值 hidefocus 或者 hidefocus=true

2.唯讀文字框內容,在input裡新增屬性值 readonly

3.防止退後清空的text文件(可把style內容做做為類引用)

4.enter鍵可以讓游標移到下乙個輸入框

5.只能為中文(有閃動)

6.只能為數字(有閃動)

7.只能為數字(無閃動)

57)) event.returnvalue=false" />

8.只能輸入英文和數字(有閃動)

9.遮蔽輸入法

10. 只能輸入 數字,小數點,減號(-) 字元(無閃動)

57)) event.returnvalue=false" />

11. 只能輸入兩位小數,三位小數(有閃動)

57) && event.keycode!=46 && event.keycode!=45 || value.match(/^\d$/) || /\.\d$/.test(value)) " />

HTML中的input標籤

input標籤的type取值 text 單行文字框 取值為 text value 預設值 size 長度 maxlength 最多可以輸入的字元數 password 密碼文字框 value 預設值 size 長度 maxlength 最多可以輸入的字元數 radio單選框 name表示所在的組名 v...

Html中input標籤的使用

1.取消按鈕按下時的虛線框 在input裡新增屬性值 hidefocus 或者 hidefocus true 2.唯讀文字框內容 在input裡新增屬性值 readonly 3.防止退後清空的text文件 可把style內容做做為類引用 4.enter鍵可以讓游標移到下乙個輸入框 5.只能為中文 有...

input 標籤常用屬性以及 type 的屬性值

input 標籤常用屬性 type 指定input型別 autocomplete 設定是否自動完成,其值為 on off autofocus 規定輸入欄位在頁面載入時是否獲得焦點,不適用於type hidden checked 預設選擇,對type值為 checkbox 及 radio 有效 dis...