中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

JavaScript怎么實現PC端四格密碼輸入框功能

發布時間:2021-04-12 09:49:44 來源:億速云 閱讀:220 作者:小新 欄目:web開發

這篇文章主要介紹JavaScript怎么實現PC端四格密碼輸入框功能,文中介紹的非常詳細,具有一定的參考價值,感興趣的小伙伴們一定要看完!

具體內容如下

html代碼如下

比較簡潔的一個demo

<!DOCTYPE html>
<html>
 <head>
 <meta charset="UTF-8">
 <title>四個密碼輸入框</title>
 <script type="text/javascript" src="jquery.min.js" ></script>
 </head>
 <style type="text/css">
 input{
 width:40px;
 height:40px;
 text-align: center;
 font-size:22px;
 }
 </style>
 <body>
 支付密碼
 <input type="password" name="pwd1" maxlength="1"/>
 <input type="password" name="pwd2" maxlength="1"/>
 <input type="password" name="pwd3" maxlength="1"/>
 <input type="password" name="pwd4" maxlength="1"/>
 </body>
 <script>
 //必須引入jquery才可以用
 //1:當輸入框1輸入1個字符后,自動切換光標到輸入框2
 $(document).ready(function(){
 $("[name='pwd1']").bind("input",function(){
 if($(this).val().length==1){
 $("[name='pwd2']").focus();
 }
 })
 $("[name='pwd2']").bind("input",function(){
 if($(this).val().length==1){
 $("[name='pwd3']").focus();
 }else if($(this).val().length==0){
 $("[name='pwd1']").focus();
 }
 })
 $("[name='pwd3']").bind("input",function(){
 if($(this).val().length==1){
 $("[name='pwd4']").focus();
 }else if($(this).val().length==0){
 $("[name='pwd2']").focus();
 }
 })
 $("[name='pwd4']").bind("input",function(){
 if($(this).val().length==0){
 $("[name='pwd3']").focus();
 }
 
 })
 })
 </script>
</html>

以上是“JavaScript怎么實現PC端四格密碼輸入框功能”這篇文章的所有內容,感謝各位的閱讀!希望分享的內容對大家有幫助,更多相關知識,歡迎關注億速云行業資訊頻道!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

js
AI

苏尼特左旗| 嘉祥县| 大悟县| 乡宁县| 延津县| 色达县| 嘉义市| 东港市| 南溪县| 宜昌市| 和龙市| 东辽县| 凤山市| 楚雄市| 章丘市| 青龙| 汝州市| 报价| 三门县| 台北县| 富锦市| 博罗县| 威远县| 视频| 乌兰浩特市| 乐都县| 姜堰市| 盐亭县| 新邵县| 保靖县| 抚州市| 锡林郭勒盟| 上犹县| 涞源县| 嘉峪关市| 洱源县| 遂平县| 呼伦贝尔市| 乌海市| 石渠县| 九江市|