人生若只如初见 2012-02-10
String.prototype.Ltrim=function()
{
//用正则表达式将前空格
//用空字符串替代。
returnthis.replace(/(^\s*)/g,"");
};
String.prototype.Rtrim=function()
{
//用正则表达式将后空格
//用空字符串替代。
returnthis.replace(/(\s*$)/g,"");
};
String.prototype.trim=function()
{
//用正则表达式将前后空格
//用空字符串替代。
returnthis.replace(/(^\s*)|(\s*$)/g,"");
};
varste="aaaabb";
alert("@"+ste.Ltrim()+"@");
alert("@"+ste.Rtrim()+"@");
alert("@"+ste.trim()+"@");
if (escape(str).indexOf("%u")!=-1). alert("不能含有汉字");else if(str.match(/\D/)!=null). alert('不能含有字母');