91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

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

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

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

东兰县| 九寨沟县| 静宁县| 镇康县| 永胜县| 博白县| 义乌市| 石泉县| 菏泽市| 循化| 南乐县| 松阳县| 石嘴山市| 舞阳县| 称多县| 岫岩| 华安县| 英吉沙县| 金门县| 沂源县| 铜梁县| 荣昌县| 黄龙县| 石屏县| 阳江市| 安塞县| 凤山县| 辽中县| 松桃| 越西县| 金乡县| 阳谷县| 南昌县| 布尔津县| 铅山县| 沙湾县| 睢宁县| 洛扎县| 喀喇沁旗| 咸阳市| 保定市|