js判断指定连续卡号段内的卡号时增加特殊提示
//YCQ000000001
//YCQ000010000
let cardnum='YCQ000000005';
let newstr="";
let tianchong="";
for (let i = 1; i <= 10000; i++) {
if(parseInt(i)<10){
tianchong="00000000";
}else if (parseInt(i)>=10 && parseInt(i)<100){
tianchong="0000000";
}else if (parseInt(i)>=100 && parseInt(i)<1000){
tianchong="000000";
}else if (parseInt(i)>=1000 && parseInt(i)<10000 ){
tianchong="00000";
}else if (parseInt(i)>=10000){
tianchong="0000";
}
newstr="YCQ"+tianchong+(parseInt("0")+parseInt(i));
if(newstr==cardnum){
alert("如果是YCQ000000001-YCQ000010000这个号段的卡号,如果提示卡号密码错误,请尝试去掉卡号最前面的Y尝试尝试登录!");
}
}
</script>
在上述指定的卡号段内,提示指定的文字
版权声明:若无特殊注明,本文皆为《菜鸟站长》原创,转载请保留文章出处。
本文链接:js判断指定连续卡号段内的卡号时增加特殊提示 - https://wziyi.com.cn/?post=388