每日随笔

验证格式问题

在jsp页面用script标签对传值进行判断,并进行弹窗提示

<script>
function check(){
if(document.getElementById('id').value.length!=8){
alert("学号或工号位数错误");
document.getElementById('id').focus();
return false;
}
return true;
}
</script>

原文地址:https://www.cnblogs.com/buxiang-Christina/p/14159064.html