只能輸入中文
<input id=
input
type=
text
onkeyup=
value=value
replace(/[^\u
E
\u
FA
]/g
)
>
只能輸入全角字符:<input id=
input
type=
text
onkeyup=
value=value
replac(/[^\u
E
\u
FA
]/g
)
>
只能輸入數字
<input id=
input
type=
text
onkeyup=
value=value
replace(/[^\d]/g
)
>
只能輸入數字和英文
<input id=
input
type=
text
onkeyup=
value=value
replace(/[\W]/g
)
>
From:http://tw.wingwit.com/Article/program/Web/201404/30640.html