关于本站
“最难不过坚持”
本人承接扒站仿站,php网站维护,病毒查杀,网站编辑,网站改版,html制作
有需要网站维护,改版,病毒查杀,网站编辑,网站备案,html制作等相关的工作可以联系我。
本人有多年相关工作经验,也可提供免费咨询,交个朋友。
有需要探讨问题的朋友,也可以加我微信,共同探讨!
微信:15011482830 QQ:408917339
2655
39
分类目录
最新评论
- https://jueru.net/
-
- :weixiao:
-
- :shuijiao: :weiqu: :zhenbang: :leng:
-
- :yiwen: :yiwen: :yiwen: :yiwen:
-
- 这个业务逻辑多少都有点奇怪了,阅读浏览次数增值在新闻详情页的控制器方法里setInc,这怎么还写进模型事件里了。如果非要用onAfterRead也可以,把新闻文章的内容单独分出来一个news_content表,然后把它和news做关联,然后给news_content表的onAfterRead事件做增值处理,这样点进新闻页内查询到文章内容时才会触发它。
-
文章标签更多
<form action=""> 输入:<input type="text" name="mazey" id="mazey" placeholder="请输入邮箱"> <input type="button" value="验证" onclick="check();"> </form> <script> function check(){ var reg = new RegExp("^[a-z0-9]+([._\\-]*[a-z0-9])*@([a-z0-9]+[-a-z0-9]*[a-z0-9]+.){1,63}[a-z0-9]+$"); //正则表达式 var obj = document.getElementById("mazey"); //要验证的对象 if(obj.value === ""){ //输入不能为空 alert("输入不能为空!"); return false; }else if(!reg.test(obj.value)){ //正则验证不通过,格式不对 alert("验证不通过!"); return false; }else{ alert("通过!"); return true; } } </script> 一、RegExp 1.1 创建RegExp对象 new RegExp("必选,正则表达式","可选,匹配模式g,i,m") 1.2 RegExp对象的方法 test:检索字符串中的指定值,返回True或False。 exec:检索字符串中的指定值,返回找到的值,没有则null。 complie:用于改变正则表达式,或增删匹配模式。 1.2.1 test() var r1 = new RegExp('world'); console.log(r1.test('Hello, world!')); //true console.log(r1.test('Hello, World!')); //false var r2 = new RegExp('world', 'i'); //大小写不敏感 console.log(r2.test('Hello, World!')); //true var r3 = new RegExp(/world/i); //简写 console.log(r3.test('Hello, World!')); //true 1.2.2 exec() var r1 = new RegExp('world'); console.log(r1.exec('Hello, world!')); //['world'] console.log(r1.exec('Hello, World!')); //null var r2 = new RegExp('world', 'i'); //大小写不敏感 console.log(r2.exec('Hello, World!')); //['world'] var r3 = new RegExp(/world/i); //简写 console.log(r3.exec('Hello, World!')); //['world'] var r4 = new RegExp('o'); console.log(r4.exec('Hello, World!')); //['o'] var r5 = new RegExp('o', 'gi'); console.log(r5.exec('Hello, WOrld!')); //['o'] console.log(r5.lastIndex); //5 匹配文本的第一个字符的位置,o为4,下一个位置为5 console.log(r5.exec('Hello, WOrld!')); //['O'] 匹配完第一个o后调用继续匹配 console.log(r5.lastIndex); //9 console.log(r5.exec('Hello, WOrld!')); //null 匹配不到返回null console.log(r5.lastIndex); //0 lastIndex重置为0 1.2.3 complie() var r1 = new RegExp('world'); console.log(r1.exec('Hello, world!')); //['world'] r1.compile('o'); console.log(r1.exec('Hello, World!')); //['o'] r1.compile('m'); console.log(r1.exec('Hello, World!')); //null var r2 = new RegExp('world'); console.log(r2.test('Hello, world!')); //true r2.compile('mazey'); console.log(r2.test('Hello, world!')); //false 二、正则表达式 ^$:表示匹配值的开始和结尾。 +:1+,一个或更多。 *:0+,零个或更多。 ?:0/1,零个或一个。 {1,2}:1<=length<=2,长度。 ():表示一个表达式的组。 []:匹配的字符范围,我理解为一个块,很多块放在一个组()里面。 三、示例 <form action=""> 输入:<input type="text" name="mazey" id="mazey" placeholder="请输入邮箱"> <input type="button" value="验证" onclick="check();"> </form> <script> function check(){ var reg = new RegExp("^[a-z0-9]+([._\\-]*[a-z0-9])*@([a-z0-9]+[-a-z0-9]*[a-z0-9]+.){1,63}[a-z0-9]+$"); //正则表达式 var obj = document.getElementById("mazey"); //要验证的对象 if(obj.value === ""){ //输入不能为空 alert("输入不能为空!"); return false; }else if(!reg.test(obj.value)){ //正则验证不通过,格式不对 alert("验证不通过!"); return false; }else{ alert("通过!"); return true; } } </script>
赏
相关推荐
return和return false的区别
1. return返回null,起到中断方法执行的效果,只要不return false事件处理函数将会继续执行,表单将提交
2. return false,事件处理函数会取消事件,不再继续向下执行。比如表单将终止提交。
<script>
function validateForm(){
var username...
console.log怎样输出换行
两个console.log()之间默认是换行的,不用单独处理,如果想输出换行,可以用
console.log( '\n' );
其他内容
如果同时打印数字和字符串,并且数字在前,打印字符串会添加引号显示。
console.log('test',1) ==》test 1
console.log(1,'test') ...
评论加载中...