文本框中的事件应用:以输入邮箱为例,如图: 代码如下: 复制代码 代码如下: jquery文本框中的事件应用 <BR>body{ font-size:13px;} <BR>/*元素初始化样式*/ <BR>.divInit{ width:390px; height:55px; line-height:55px; padding-left:20px;} <BR>.txtInit{ border:solid 1px #666; padding:3px; background-image:url('Images/bg_email_input.gif');} <BR>.spnInit{ width:179px; height:40px; line-height:40px; float:right; margin-top:8px; padding-left:10px; background-repeat:no-repeat;} <BR>/*元素丢失焦点样式*/ <BR>.divBlur{ background-color:#FEEEC2;} <BR>.txtBlur{ border:solid 1px #666; padding:3px; background-image:url('Images/bg_email_input2.gif');} <BR>.spnBlur{ background-image:url('Images/bg_email_wrong.gif');} <BR>.divFocu{ background-color:#EDFFD5;} /*div获取焦点样式*/ <BR>.spnSucc{ background-image:url('Images/pic_Email_ok.gif'); margin-top:20px;} /*验证成功时span样式*/ <BR> <BR>$(function () { <BR>$("#txtEmail").trigger("focus"); //默认时文本框获得焦点 <BR>$("#txtEmail").focus(function () { //文本框获取焦点事件 <BR>$(this).removeClass("txtBlur").addClass("txtInit"); <BR>$("#email").removeClass("divBlur").addClass("divFocu"); <BR>$("#spnTip").removeClass("spnBlur").removeClass("spnSucc").html("请输入您常用邮箱地址!"); <BR>}); <BR>$("#txtEmail").blur(function () { //文本框丢失焦点事件 <BR>var vTxt = $("#txtEmail").val(); <BR>if (vTxt.length == 0) { //文本框中是否输入了邮箱 <BR>$(this).removeClass("txtInit").addClass("txtBlur"); <BR>$("# email").removeClass("divFocu").addClass("divBlur"); <BR>$("#spnTip").addClass("spnBlur").html("邮箱地址不能为空!"); <BR>} <BR>else { //检测邮箱格式是否正确 <BR>if (!chkEmail(vTxt)) { //如果不正确 <BR>$(this).removeClass("txtInit").addClass("txtBlur"); <BR>$("#email").removeClass("divFocu").addClass("divBlur"); <BR>$("#spnTip").addClass("spnBlur").html("邮箱格式不正确!"); <BR>} <BR>else { //如果正确 <BR>$(this).removeClass("txtBlur").addClass("txtInit"); <BR>$("#email").removeClass("divFocu"); <BR>$("#spnTip").removeClass("spnBlur").addClass("spnSucc").html(""); <BR>} <BR>} <BR>}); <BR>/*验证邮箱格式是否正确 参数strEmail,需要验证的邮箱*/ <BR>function chkEmail(strEmail) { <BR>var vChk = /^\w+([-+.]\w+)*@\w+([-.]\w+)*\.\w+([-.]\w+)*$/; <BR>if (!vChk.test(strEmail)) { <BR>return false; <BR>} <BR>else { <BR>return true; <BR>} <BR>} <BR>}); <BR> 邮箱: