开花流水

空山无人,水流花开。

BlogJava 首页 新随笔 联系 聚合 管理
  79 Posts :: 42 Stories :: 160 Comments :: 0 Trackbacks
验证数字的有效性,此处为大于0而且小于100的不为空数字为合法
function check(textId) {
 var num;
 num = document.getElementById(textId).value;
 if (num.length == 0 || num.replace(/(^\s*)|(\s*$)/g,"")==""  ) {
  alert("\u4e2a\u6570\u7684\u503c\u4e0d\u80fd\u4e3a\u7a7a\uff01");
  event.returnValue = false;
 }
 if (isNaN(num)) {
  alert("\u4e2a\u6570\u7684\u503c\u5fc5\u987b\u662f\u6574\u6570\u7684\u6570\u5b57\uff01");
  event.returnValue = false;
 }
 if (parseInt(num) <= 0) {
  alert("\u4e2a\u6570\u7684\u503c\u5fc5\u987b\u5927\u4e8e0");
  event.returnValue = false;
 }
 if (parseInt(num) > 100) {
  alert("\u4e2a\u6570\u7684\u503c\u5fc5\u987b\u5c0f\u4e8e100");
  event.returnValue = false;
 }
 return true;
}
posted on 2010-04-28 14:32 开花流水 阅读(1943) 评论(0)  编辑  收藏 所属分类: java技术

只有注册用户登录后才能发表评论。


网站导航: