html 限制输入 数字 input,txtbox均可用
Code
<TD style="BORDER-BOTTOM: #cccccc 1px solid" align="middle" width="15%" bgColor="#eaeaea">宾客年龄:</TD>
<TD style="BORDER-BOTTOM: #cccccc 1px solid"><INPUT type="text" size="17" name="age" ID="Name1" onkeyup="value=value.replace(/[^\d]/g,'') "onbeforepaste="clipboardData.setData('text',clipboardData.getData('text').replace(/[^\d]/g,''))">*</TD>
js 限制输入不为空
function check_input()
{
if (Frm.name.value=="")
{ alert("(您的)宾客姓名不能为空,请重新填写!");
return false;
}
}