html input文字輸入框的一些總結

直立行走的大瓶子發表於2018-03-12

1、選中去除文字框文字,離開後顯示原有文字:

<input name="key" type="text" id="key" value="關鍵詞" size="30"   
      onmouseover=this.focus();this.select();   
      onclick="if(value==defaultValue){value='';this.style.color='#000'}"   
      onBlur="if(!value){value=defaultValue;this.style.color='#999'}" style="color:#999" />

2、選中後方可編輯:

<input type="checkbox" name="tpbox" value="1" 
onclick="if(this.checked) {txtNo.disabled=false}else{txtNo.disabled=true}">
你一定要幸福,我會好好的!你的姓名:
<input type="text" name="txtNo" size="20" value="選中前面的選項方可編輯" disabled>

3、點選連結後方可編輯:

<a href="#" onclick="username.readOnly=false;alert('你好,歡迎使用!')">先點選我哦!</a>
你的姓名:<input id="username" value="--請輸入--" size="30" readOnly>

4、輸入框從中間輸入:

<input type="text" name="mid" style="text-align:center;">

5、輸入框變色:

<input type="text" size="20" style="background-color:#FFFFFF"
        onfocus="style.backgroundColor='#FFFF00'"
        onblur="style.backgroundColor='#FFFFFF'">

6、輸入框只能輸入數字(用的是正規表示式):你的年齡,電話:

<input onkeyup="value=value.replace(/[^\d]/g,'') "
onbeforepaste="clipboardData.setData('text',clipboardData.getData('text').replace(/[^\d]/g,''))">

7、輸入框只能輸入中文(用的是正規表示式):你的中文名:

<input onkeyup="value=value.replace(/[ -~]/g,'')" 
onkeydown="if(event.keyCode==13)event.keyCode=9">

8、只能輸入英文和數字(用的是正規表示式):

你的暱稱:<input onkeyup="value=value.replace(/[\W]/g,'') "    
onbeforepaste="clipboardData.setData('text',clipboardData.getData('text').replace(/[^\d]/g,''))"
onkeydown="if(event.keyCode==13)event.keyCode=9">

9、輸入框不能編輯,但表單可以獲得輸入框內的值:

<input type="text" value="afreon" onclick="alert('總和不能編輯!');" onfocus="this.blur()" />
<input type="text" value="afreon" onclick="alert(this.value);" readonly />
<input value="不可修改"  readonly= "true" type="text"/>//:字型顏色為黑體

10、輸入框不能編輯,並且表單不能獲得輸入框內的值

<input value="不可修改" disabled="disabled"  type="text"/>//:字型顏色為灰體

11、輸入框禁止輸入法:

<input onpaste="return false" style="ime-mode:disabled">

來源:https://www.jianshu.com/p/04499e051147


相關文章