控制html:text 只能输入数字
struts 中的 html:text 中实现类似inpu 只能输入 数字的操作 请看以下代码:
IE/ Firefox 都适用
// 截取输入文本框中的值,只有是数字键才保留下来
onkeyup="value=value.replace(/[^\d]/g,'') "
// 直接控制只有数字可以输入onkeypress="return (/[\d.]/.test(String.fromCharCode(event.keyCode)))"
具体如:
<html:text property="age" style="width:98%" onkeyup="value=value.replace(/[^\d]/g,'') " />
或:
<html:text property="age" style="width:98%" onkeypress="return (/[\d.]/.test(String.fromCharCode(event.keyCode)))"/>
一般情况下,直接控制输入就好了。
相关推荐
lupeng 2020-11-14
sjcheck 2020-11-10
sjcheck 2020-11-03
meylovezn 2020-08-28
owhile 2020-08-18
Francismingren 2020-08-17
pythonclass 2020-07-29
sunzhihaofuture 2020-07-19
爱读书的旅行者 2020-07-07
行吟阁 2020-07-05
tianqi 2020-07-05
行吟阁 2020-07-04
冰蝶 2020-07-04
lyg0 2020-07-04
owhile 2020-07-04
opspider 2020-06-28
lengyu0 2020-06-28
tianqi 2020-06-21
dadaooxx 2020-06-16