2014年3月17日 星期一

Lab 13 Regular expression in action II


<html>
 <head>
 </head>
 <body id="body">
  <form action="javascript:void(0);" id="exampleForm">
   <input type="text" id="examplePass" />
   <input type="submit" />
  </form>
 </body>
 <script>

 document.getElementById("exampleForm").onsubmit =function() {
var passwordRegex = /^\d{1,3}[.]\d{1,3}[.]\d{1,3}[.]\d{1,3}|\w+\.\w+(\.\\w{1,})*$/;
//  var passwordRegex = /^\d{1,3}[.]\d{1,3}[.]\d{1,3}[.]\d{1,3}$/;
//var passwordRegex = /^([12]?\d{1,2}[.]\d{1,3}[.]\d{1,3}[.]\d{1,3})|(\w{1,}[.]\w{1,}([.]\w{1,})*)$/;

  if(!passwordRegex.test(document.getElementById("examplePass").value)){
  console.log("Regex didn't match");
   var notify = document.getElementById("notify");
   if (notify === null){
   notify = document.createElement("p");
   notify.textContent = " ERROR ";
   notify.id = "notify";
   
   var body = document.getElementById("body");
   body.appendChild(notify);
   }
  }
 };

  </script>
</html>

沒有留言:

張貼留言