html限制輸入(只允許輸入數字字母等)

2021-07-31 23:28:12 字數 2828 閱讀 4632

<title>無標題文件

<body>

<p>

只允許輸入數字

<inputtype="text" onkeyup="value=value.replace(/[^\d]/g,'')" onbeforepaste="clipboarddata.setdata('text',clipboarddata.getdata('text').replace(/[^\d]/g,''))" >

<inputtype="text" onkeyup="this.value=this.value.replace(/[^\d]/g,'')">

<p>

只允許輸入字母

<inputtype="text" onkeyup="value=value.replace(/[^a-za-z]/g,'')" onbeforepaste="clipboarddata.setdata('text',clipboarddata.getdata('text').replace(/[^a-za-z]/g,''))" >

<inputtype="text" onkeyup="this.value=this.value.replace(/[^a-za-z]/g,'')">

<p>

只允許輸入漢字

<inputtype="text" onkeyup="value=value.replace(/[^\u4e00-\u9fa5]/g,'')" onbeforepaste="clipboarddata.setdata('text',clipboarddata.getdata('text').replace(/[^\u4e00-\u9fa5]/g,''))" >

<inputtype="text" onkeyup="this.value=this.value.replace(/[^\u4e00-\u9fa5]/g,'')">

<p>

只能輸入數字和字母

<inputtype="text" onkeyup="value=value.replace(/[\w]/g,'')" onbeforepaste="clipboarddata.setdata('text',clipboarddata.getdata('text').replace(/[\w]/g,''))" >

<inputtype="text" onkeyup="value=value.replace(/[\w]/g,'')">

<p>

只能輸入email格式的資料(字母 數字 - _ @)

<inputtype="text" onkeyup="value=value.replace(/[^a-za-z\-_@\.0-9]/g,'')" onbeforepaste="clipboarddata.setdata('text',clipboarddata.getdata('text').replace(/[^a-za-z\-_@\.0-9]/g,''))" >

<inputtype="text" onkeyup="value=value.replace(/[^a-za-z\-_@\.0-9]/g,'')">

<p>

只允許輸入數字和字母和漢字

<inputtype="text" onkeyup="value=value.replace(/[^\w\u4e00-\u9fa5]/g, '')">

js 只准輸入數字 JS驗證只允許輸入數字

1.文字框只能輸入數字 小數點也不能輸入 document ready function txt rowscount blur function else txt rowscount keyup function 2.只能輸入數字,能輸小數點.3.數字和小數點方法二 4.只能輸入字母和漢字 5.只能...

C TextBox中只允許輸入數字的解決方法

在定製的textbox控制項中,如果只允許輸入數字,需要考慮如下三種情況 正常按鍵輸入的字元,包括西文 中文字元等 通過鍵盤快捷鍵方式貼入的文字,即ctrl v操作 通過上下文關聯選單的mouse操作貼入的文字,即 貼上 操作 在 的同類文章中,多數只考慮了第1種情況,忽略得了第2 3種常見的操作。...

WPF 只允許輸入數字的文字框

在網上有不少關入這方面的資料,下面是我選用的乙個方案 public numbertextbox void numbertextbox keydown object sender,keyeventargs e else void numbertextbox textchanged object sen...