码迷,mamicode.com
首页 > 其他好文 > 详细

正则表达

时间:2018-10-30 22:21:40      阅读:186      评论:0      收藏:0      [点我收藏+]

标签:nbsp   for   NPU   fun   text   class   put   cli   click   

<!DOCTYPE html>
<html>
<head>
 <title>正则表达式</title>
 <meta charset="utf-8">
 <style>
 .input{
            width: 300px;
            height: 40px;
            font: 20px/40px "";
            margin: 200px 320px;
        }
        .input1{
         
            height: 40px;
            font: 20px/40px "";
            margin: 200px -320px;
        }
    .a{
             width: 120px;
             height: 50px;
             position: relative;
             left: 300px;
             font: 30px/50px "";
         }
    </style>
    <script>
    function 检测()
 {
  var name=document.getElementsByTagName(‘name‘).value;
  var norms=/^[A-Za-z0-9]{1,6}/;
  
  if (norms.test(name))
  {
   alert("OK");
  }
  else
  {
   alert("NO");
  }
 }
 </script> 
 
</head>
<body>
 <label for="name" class="a">Name:</label>
  <input type="text" placeholder="不超过6个字符" name="name" id="name" class="input">
  <input type="button" value="检测" onclick="检测()" class="input1">
 
 
</body>
</html>
 
效果如下:
技术分享图片

 

正则表达

标签:nbsp   for   NPU   fun   text   class   put   cli   click   

原文地址:https://www.cnblogs.com/0sakura0/p/9879945.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!