html中如何控制input輸入格式的示例
發(fā)表時(shí)間:2024-05-10 來源:明輝站整理相關(guān)軟件相關(guān)文章人氣:
[摘要]只能輸入中文<input type="text" onkeyup="this.value=this.value.replace(/[^\u4e00-\u9fa5]/g,)">只能輸入英文<input type="text"...
只能輸入中文
<input type="text" onkeyup="this.value=this.value.replace(/[^\u4e00-\u9fa5]/g,'')">
只能輸入英文
<input type="text" onkeyup="this.value=this.value.replace(/[^a-zA-Z]/g,'')">
文本框只能輸入數(shù)字代碼(小數(shù)點(diǎn)也不能輸入)
<input onkeyup="this.value=this.value.replace(/\D/g,'')" onafterpaste="this.value=this.value.replace(/\D/g,'')">
只能輸入數(shù)字,能輸小數(shù)點(diǎn)
方法一:<input onkeyup="if(isNaN(value))execCommand('undo')" onafterpaste="if(isNaN(value))execCommand('undo')">
方法二:<input name=txt1 onchange="if(/\D/.test(this.value)){alert('只能輸入數(shù)字');this.value='';}">
方法三:<input onkeyup="this.value=this.value.replace(/[^\d.]/g,'')" onafterpaste="this.value=this.value.replace(/[^\d.]/g,'')" >
只能輸入數(shù)字和英文
<input onKeyUp="value=value.replace(/[^\d chun]/g,'')">
只能輸入字母和中文
<input onkeyup="value=value.replace(/[\d]/g,'') "onbeforepaste="clipboardData.setData('text',clipboardData.getData('text').replace(/[\d]/g,''))"
maxlength=10 name="Numbers">
只能輸入字母和數(shù)字
<input onkeyup="value=value.replace(/[^\w\.\/]/ig,'')">
<input type="text" size="20" onkeyup="this.value=this.value.replace(/[^\w_]/g,'');">
這個(gè)可以輸入大小寫字母和數(shù)字,下畫線
<input type="text" size="20" onkeyup="this.value=this.value.replace(/[^\d-]/g,'')" onafterpaste="this.value=this.value.replace(/[^\d-]/g,'')">
這個(gè)可以輸入數(shù)字,中線(電話號(hào)碼)
<input type="text" size="20" onkeyup="this.value=this.value.replace(/[^a-z0-9_]/g,'');">
這個(gè)可以輸入小寫字母和數(shù)字,下畫線
<input type="text" onkeyup="value=value.replace(/[^\d.]/g,'')">
這個(gè)可以輸入數(shù)字和點(diǎn)
min、max 和 step 屬性用于包含數(shù)字、日期的 input 類型約束。
min 屬性規(guī)定輸入域所允許的最小值。
max 屬性規(guī)定輸入域所允許的最大值。
step 屬性為輸入域規(guī)定合法的數(shù)字間隔
以上就是html中如何控制input輸入格式的示例的詳細(xì)內(nèi)容,更多請(qǐng)關(guān)注php中文網(wǎng)其它相關(guān)文章!
網(wǎng)站建設(shè)是一個(gè)廣義的術(shù)語,涵蓋了許多不同的技能和學(xué)科中所使用的生產(chǎn)和維護(hù)的網(wǎng)站。