陋室铭
永远也不要停下学习的脚步(大道至简至易)

function ValidateData()
{
  var e = window.event.srcElement;
  if(e.value!="")
  {
  if ( !((window.event.keyCode >= 48) && (window.event.keyCode <= 57)))
  {
  alert("卷数必须输入数字");
  e.value="";
  }
  }
  e.focus();
}

<asp:TextBox ID="TextBox4" runat="server" Width="152px" onkeypress="ValidateData();" MaxLength="9" >

posted on 2006-10-19 15:08  宏宇  阅读(499)  评论(0编辑  收藏  举报