前端之家收集整理的这篇文章主要介绍了
正则表达式的验证,
前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<Meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<Meta http-equiv="Content-Language" content="zh-CN" />
<title> New Document </title>
<script src="__PUBLIC__/Js/jquery-1.8.3.min.js"></script>
<script>
$(document).ready(function(){
$("#regex").css("width",300);
var $tel = new RegExp($("#regex").val());
$("#btn").click(function(){
if($tel.test($("#regexValidate").val())){
alert("nice!");
}else{
alert("Oh No");
}
});
});
</script>
</head>
<body>
<!-- 默认:只含有汉字、数字、字母、下划线不能以下划线开头和结尾的正则表达式 -->
<span>正则表达式:</span>
<input type="text" id="regex" value="^(?!_)(?!.*?_$)[a-zA-Z0-9_\u4e00-\u9fa5]+$" />
<br></br>
<input type="text" id="regexValidate" value=""></input>
<input type="button" id="btn" value="验证"/>
</body>
</html>
正则表达式的即时验证哦
原文链接:https://www.f2er.com/regex/360383.html