<!DOCTYPE html><html><head> <meta charset="UTF-8"> <title>return</title></head><body><script> var input=prompt("请输入您的密码"); function funName(){ if(input.length<6){ return ("密码不能小于6位数"); } else if(input.length>12){ return ("密码不能大于12位数"); } else(input.length>=6 && input.length<=12){ return("密码格式正确"); } } alert(funName(input)); </script>
添加回答
举报
0/150
提交
取消