js如何判断input中输入的是一个大写字母

是这样的,想请说下,js如何判断input中输入的是一个大写字母
最新回答
梦他

2024-09-29 15:12:05

<html><body>
<head><meta charset="utf-8">
<script type="text/javascript">
function check(){
var index=document.getElementById("username").value; 
    if (/^[A-Z]+$/.test(index))  //a-z
    { 
      alert("true");
     }  
   else {
      alert("请输入大写英文字母"); 
     return false; 
    }
}
 </script>
  </head>
  <body> 
  <input type="button"value="提交" onClick="check()">
  <input type ="text" id="username">
  </body>
</html>
対你不够好り

2024-09-29 09:07:38

用正则表达式判断。如果你说的纯数字是指整数的话(不包含小数点),可以这样:
function check(){
var value = document.getElementById("inputId").value;
var reg=/^[1-9]\d*$|^0$/; // 注意:故意限制了 0321 这种格式,如不需要,直接reg=/^\d+$/;
if(reg.test(value)==true){
alert("都是数字!通过");
return true;
}else{
alert("不是纯数字!失败!");
return false;
}
}

如果小数也算纯数字,修改reg正则表达式为:
var reg = /^\d+(\.\d+)?$/;