文本框中的事件应用(纯js验证邮箱)

文本框中的事件应用

html

<!DOCTYPE html>
<html>
	<head>
		<meta charset="utf-8">
		<script src="https://ajax.aspnetcdn.com/ajax/jquery/jquery-1.9.0.min.js"></script>
		<script type="text/javascript" src="./email-text.js"></script>
		<link type="text/css" href="./email-text.css" rel="stylesheet"/>
		<title>文本框中的事件应用</title>
	</head>
	<body>
		<form id="form1" action="#">
			<div id="email" class="divInit">
				邮箱:<span id="spnTip" class="spnInit"></span>
				<input id="txtEmail" type="text" class="txtInit" />
			</div>
		</form>
	</body>
</html>

js

$(function(){
	$("#txtEmail").trigger("focus");//默认时文本框获取焦点
	$("#txtEmail").focus(function(){//文本框获取焦点事件
		$(this).removeClass("txtBlur").addClass("txtInit");
		$("#email").removeClass("divBlur").addClass("divFocu");
		$("#spantip").removeClass("spanBlur").removeClass("spanSucc").html("请输入您常用邮箱地址! ");
	})
	
	$("#txtEmail").blur(function(){//文本框丢失焦点事件
		var vtxt = $("#txtEmail").val();
		if(vtxt.length == 0){
			$(this).removeClass("txtInit").addClass("txtBlur");
			$("#email").removeClass("divFocu").addClass("divBlur");
			$("#spnTip").addClass("spnBlur").html("邮箱地址不能为空! ");
		}
		else{
			if(!chkemail(vtxt)){//检测邮箱格式是否正确
				$(this).removeClass("txtInit").addClass("txtBlur");
				$("#email").removeClass("divFocu").addClass("divBlur");
				$("#spnTip").addClass("spnBlur").html("邮箱格式不正确");
			}
			else{//如果正确
				$(this).removeClass("txtBlur").addClass("txtInit");
				$("#email").removeClass("divFocu");
				$("#spnTip").removeClass("spnBlur").addClass("spnSucc").html("");
			}
		}
	})
	
	//验证邮箱格式是否正确
	//参数staremail,需要验证的邮箱
	function chkemail(staremail){
		if(!/^\w+([-+.]\w+)*@\w+([-.]\w+)*\.\w+([-.]\w+)*$/.test(staremail)){
			return false;
		}
		else{
			return true;
		}
	}
})

css

body{
	font-size: 13px;
}

/* 元素初始状态样式 */
.divInit{
	width: 390px;
	height: 55px;
	line-height: 55px;
	padding-left: 20px;
}
.txtInit{
	border: #666666 1px solid;
	padding: 3px;
	background-color: #CCCCCC;
}
.spnInit{
	width: 179px;
	height: 40px;
	line-height: 40px;
	float: left;
	margin-top: 8px;
	padding-left: 10px;
	background-repeat: no-repeat;
}

/* 元素丢失焦点样式 */
.divBlur{
	background-color: #FEEEC2;
}
.txtBlur{
	border: #666666 1px solid;
	padding: 3px;
	background-color: #FEEEC2;
}
.spnBlur{
	background-color: #EDFFD5;
}

/* div获取焦点样式 */
.divFocu{
	background-color: #EDFFD5;
}
.spnSucc{
	background-color: aquamarine;
	margin-top: 20px;
}
/* 验证成功时span样式 */

想法

如果触发事件,其中的区别操作是:删除一个class样式,加上一个class样式

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
教你怎么正确使用邮箱地址验证代码 下面是一些常用的正则表达式: 匹配文字符的正则表达式: [\u4e00-\u9fa5] 评注:匹配文还真是个头疼的事,有了这个表达式就好办了 匹配双字节字符(包括汉字在内):[^\x00-\xff] 评注:可以用来计算字符串的长度(一个双字节字符长度计2,ASCII字符计1) 匹配空白行的正则表达式:\n\s*\r 评注:可以用来删除空白行 匹配HTML标记的正则表达式:<(\S*?)[^>]*>.*?</\1>|<.*? /> 评注:网上流传的版本太糟糕,上面这个也仅仅能匹配部分,对于复杂的嵌套标记依旧无能为力 匹配首尾空白字符的正则表达式:^\s*|\s*$ 评注:可以用来删除行首行尾的空白字符(包括空格、制表符、换页符等等),非常有用的表达式 匹配Email地址的正则表达式:\w+([-+.]\w+)*@\w+([-.]\w+)*\.\w+([-.]\w+)* 评注:表单验证时很实用 匹配网址URL的正则表达式:[a-zA-z]+://[^\s]* 评注:网上流传的版本功能很有限,上面这个基本可以满足需求 匹配帐号是否合法(字母开头,允许5-16字节,允许字母数字下划线):^[a-zA-Z][a-zA-Z0-9_]{4,15}$ 评注:表单验证时很实用 匹配国内电话号码:\d{3}-\d{8}|\d{4}-\d{7} 评注:匹配形式如 0511-4405222 或 021-87888822 匹配腾讯QQ号:[1-9][0-9]{4,} 评注:腾讯QQ号从10000开始 匹配国邮政编码:[1-9]\d{5}(?!\d) 评注:国邮政编码为6位数字 匹配身份证:\d{15}|\d{18} 评注:国的身份证为15位或18位 匹配ip地址:\d+\.\d+\.\d+\.\d+ 评注:提取ip地址时有用 匹配特定数字: ^[1-9]\d*$ //匹配正整数 ^-[1-9]\d*$ //匹配负整数 ^-?[1-9]\d*$ //匹配整数 ^[1-9]\d*|0$ //匹配非负整数(正整数 + 0) ^-[1-9]\d*|0$ //匹配非正整数(负整数 + 0) ^[1-9]\d*\.\d*|0\.\d*[1-9]\d*$ //匹配正浮点数 ^-([1-9]\d*\.\d*|0\.\d*[1-9]\d*)$ //匹配负浮点数 ^-?([1-9]\d*\.\d*|0\.\d*[1-9]\d*|0?\.0+|0)$ //匹配浮点数 ^[1-9]\d*\.\d*|0\.\d*[1-9]\d*|0?\.0+|0$ //匹配非负浮点数(正浮点数 + 0) ^(-([1-9]\d*\.\d*|0\.\d*[1-9]\d*))|0?\.0+|0$ //匹配非正浮点数(负浮点数 + 0) 评注:处理大量数据时有用,具体应用时注意修正 匹配特定字符串: ^[A-Za-z]+$ //匹配由26个英文字母组成的字符串 ^[A-Z]+$ //匹配由26个英文字母的大写组成的字符串 ^[a-z]+$ //匹配由26个英文字母的小写组成的字符串 ^[A-Za-z0-9]+$ //匹配由数字和26个英文字母组成的字符串 ^\w+$ //匹配由数字、26个英文字母或者下划线组成的字符串
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值