利用JavaScript与正则表达式判断输入账号格式是否正确
在学习了HTML DOM对象后,做几个小练习来巩固一下所学内容。
正则表达式:
正则表达式,又称规则表达式。(英语:Regular Expression,在代码中常简写为regex、regexp或RE),计算机科学的一个概念。正则表达式通常被用来检索、替换那些符合某个模式(规则)的文本。
许多程序设计语言都支持利用正则表达式进行字符串操作。例如,在Perl中就内建了一个功能强大的正则表达式引擎。正则表达式这个概念最初是由Unix中的工具软件(例如sed和grep)普及开的。正则表达式通常缩写成“regex”,单数有regexp、regex,复数有regexps、regexes、regexen。
通过在JavaScript中运用正则表达式进行判断,极大地提高了程序效率。常用的正则表达式
下面是JavaScript的代码:
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Title</title> </head> <body> 账号:<input type="text" id="account"><br> <div id="tipa"></div><br> <button onclick="judge()">判断</button> </body> <script> function judge() { var judgein = /^[a-zA-Z][a-zA-Z0-9_]{4,15}$/; var account = document.getElementById("account"); var tip2 = document.getElementById("tipa"); if(!judgein.test(account.value)) { var color = document.createAttribute("style"); color.nodeValue = "color: #ff1120"; tip2.setAttributeNode(color); tip2.innerHTML="错误"; } else { document.getElementById("tipa").innerHTML="正确"; var color = document.createAttribute("style"); color.nodeValue = "color: #00ff22"; tip2.setAttributeNode(color); } } </script> </html>
若想实现同步刷新,只需在文本框属性中加入``onkeyup``属性即可