asfman
android developer
posts - 90,  comments - 213,  trackbacks - 0

//清除两边空格
String.prototype.trim = function()
{
return this.replace(/(^\s*)|(\s*$)/g, "");
}
//取字符串长度
String.prototype.len=function()
{return this.replace(/[^\x00-\xff]/g,"aa").length;

//校验是否全由数字组成
function isDigit(s)
{
var patrn=/^[0-9]+$/;
if (!patrn.exec(s)) return false
return true
}

//判断长度
function checkLength(objId,objLength,tip)
{
var obj=document.getElementById(objId);
if(obj == null)
{
alert("传入对象为空");
return false;
}
if (obj.value.len()>objLength)
{
obj.select();
alert(tip);
return false;
}
return true;
}

 

if (!checkLength('A',A的最大长度,'输入太长!'))return false;

posted on 2006-04-03 15:57 汪杰 阅读(345) 评论(0)  编辑 收藏 引用 所属分类: hengxing网站js
只有注册用户登录后才能发表评论。

<2006年7月>
2526272829301
2345678
9101112131415
16171819202122
23242526272829
303112345

常用链接

留言簿(15)

随笔分类(1)

随笔档案(90)

文章分类(727)

文章档案(712)

相册

收藏夹

http://blog.csdn.net/prodigynonsense

友情链接

最新随笔

搜索

  •  

积分与排名

  • 积分 - 467490
  • 排名 - 6

最新随笔

最新评论

阅读排行榜

评论排行榜