您好,登錄后才能下訂單哦!
實例如下所示:
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title></title> </head> <script src="js/jquery-1.8.0.min.js"></script> <script> var cnresu = false; $(function(){ $("input[name='uname']").blur(function(){//blur從鏈接上移開焦點(鼠標離開框時) var unamestr = $(this).val(); var regstr = /^[\u4e00-\u9fa5]{2,4}$/; if(!regstr.test(unamestr)){ $(this).parent().next("dd").html("必須是2-4個漢字"); cnresu = false; return; } cnresu = true; }); $("input[name='uname']").focus(function(){//focus給予鏈接焦點(鼠標點中框時) $(this).css("border","solid 1px #dddddd"); //$(this).val(""); $(this).parent().next("dd").html(""); }); }); </script> <style> #home{ width: 600px; height: 300px; margin: auto; background-color: #7FFFD4; } #head{ padding-top: 20px; height: 100px; } .dl1{ clear: both; } .dl1 dt{ float: left; text-align: right; width: 150px; height: 30px; line-height: 30px; } .dl1 dd{ float: left; height: 30px; line-height: 30px; } #foot{ text-align: center; } h2{ padding-top: 20px; text-align: center; color: bisque; } </style> <body> <div id="home"> <h2>用戶登陸</h2> <div id="head"> <form action="biaodan.html" name="regform" method="post" > <dl class="dl1"> <dt>用戶名 : </dt> <dd><input type="text" name="uname"/></dd> <dd id="erroruname"></dd> </dl> <dl class="dl1"> <dt>密碼 : </dt> <dd><input type="password"/></dd> <dd id="errorpass"></dd> </dl> </div> <div id="foot"> <input type="submit" value="提交"/> <input type="reset" value="重置"/> </div> </form> </div> </body> </html>
運行截圖
以上這篇jquery實現用戶登陸界面(示例講解)就是小編分享給大家的全部內容了,希望能給大家一個參考,也希望大家多多支持億速云。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。