<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>课堂案例-验证用户名案例</title>
<style>
span {
display: inline-block;
width: 250px;
height: 30px;
vertical-align: middle;
line-height: 30px;
padding-left: 15px;
}
.error {
color: red;
background: url(./error1.png) no-repeat left center;
}
.right {
color: green;
background: url(./right1.png) no-repeat left center;
}
</style>
</head>
<body>
<input type="text">
<span></span>
<script>
// 获取元素
let input=document.querySelector('input');
let span=input.nextElementSibling;
// 添加监听事件 input blur
input.addEventListener('blur',function(){
if(/^[a-zA-Z0-9-_]{6,16}$/.test(input.value)){
span.className='right';
span.innerHTML='输入正确';
}else{
span.className='error';
span.innerHTML='用户名输入不合法!';
}
})
</script>
</body>
</html>