작업 항목
1590 단어 작업
function clsPassWordValidate(strPassWord)
{
this.passWord=strPassWord;
this.errorTip=null;
this.isSuccess=true;
this.clsLengthValidate=clsPassWordValidate$clsLengthValidate;
this.clsContentValidate=clsPassWordValidate$clsContentValidate;
this.validate=clsPassWordValidate$validate;
}
function clsPassWordValidate$clsLengthValidate()
{debugger;
if(null==this.passWord)
{
this.isSuccess=false;
this.errorTip=" !";
}
else
{
if(this.passWord.length<1)
{
this.isSuccess=false;
this.errorTip=" 1 !";
}
}
}
function clsPassWordValidate$clsContentValidate()
{debugger;
var btest=/[A-Za-z]/.test(this.passWord);
if(!btest)
{
this.isSuccess=false;
this.errorTip=" !";
}
if(!this.isSuccess)
{
return;
}
btest=/[0-9]/.test(this.passWord);
if(!btest)
{
this.isSuccess=false;
this.errorTip=" !";
}
if(!this.isSuccess)
{
return;
}
btest=/[]\[\$~!@#%\^&\*\(\)_\+\{}\|:"<>\?`=\-\\;',\.\/]/.test(this.passWord);
if(!btest)
{
this.isSuccess=false;
this.errorTip=" !";
}
}
function clsPassWordValidate$validate()
{debugger;
this.clsLengthValidate();
if(this.isSuccess)
{
this.clsContentValidate();
}
}
function test()
{debugger;
var str="helloworld";
var oValidate=new clsPassWordValidate(str);
oValidate.validate();
if(!oValidate.isSuccess)
{
alert(oValidate.errorTip);
}
}
test();
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
개인 FLEX 지식 라이브러리 작업 노트[size=large]1、 이 방법은 TileWindows 팝업 창에 있습니다. TitleWindows의 maxWidth와 maxHeight를 지정하지 않으면 최대 값이 화면 전체에 깔립니다. 페이지의minHeigh...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.