博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
js模拟输入支付密码
阅读量:5063 次
发布时间:2019-06-12

本文共 2121 字,大约阅读时间需要 7 分钟。

html

请输入数字!

 

 

js

 

/*222动态生成*/ var box=document.getElementsByClassName("box")[0]; function createDIV(num){
for(var i=0;i
=48&&event.keyCode<=57){
/*输入0-9*/ changeDiv(); errorPoint.style.display="none"; }else if(event.keyCode=="8") {
/*退格回删事件*/ firstDiv(); }else if(event.keyCode=="13"){
/*回车事件*/ getPassword(); }else{
/*输入非0-9*/ errorPoint.style.display="block"; this.value=""; } }; } } func(); /*定义pawDiv点击事件*/ var pawDivClick=function(e){
for(var i=0;i

 

css

 

*{
padding: 0; margin: 0; } .content{
width: 400px; height: 50px; margin: 0 auto; margin-top: 100px; } .title{
font-family: '微软雅黑'; font-size: 16px; } .box{
width: 190px; height: 30px; border:1px solid #ccc; margin-top: 10px; line-height: 30px; } .content .box,.forget,.content .pwdBox{
display: inline-block; } .content .forget{
width: 100px; color:lightskyblue; vertical-align: super; font-size: 14px; } .box input.paw{
width: 30px; height: 20px; line-height: 20px; margin-left: -9px; border:none; border-right: 1px dashed #ccc; text-align: center; } .box input.paw:nth-child(1){
margin-left: 0; } .content .box .pawDiv:nth-child(6) input.paw{
border: none; } .content .box input.paw:focus{outline:0;} .content .box .pawDiv{
display: inline-block; line-height: 30px; width: 31px; height: 31px; margin-top: -2px; float: left; } .point{
font-size: 14px; color: #ccc; margin: 5px 0; } .errorPoint{
color: red; display: none; } .getPasswordBtn{
width: 100px; height: 30px; background-color: cornflowerblue; font-size: 14px; font-family: '微软雅黑'; color: white; border: none; }

转载于:https://www.cnblogs.com/shuihanxiao/p/9813026.html

你可能感兴趣的文章
java学习笔记之String类
查看>>
UVA 11082 Matrix Decompressing 矩阵解压(最大流,经典)
查看>>
jdk从1.8降到jdk1.7失败
查看>>
硬件笔记之Thinkpad T470P更换2K屏幕
查看>>
【知识库】-数据库_MySQL 的七种 join
查看>>
iOS开发——缩放图片
查看>>
HTTP之URL的快捷方式
查看>>
满世界都是图论
查看>>
配置链路聚合中极小错误——失之毫厘谬以千里
查看>>
代码整洁
查看>>
蓝桥杯-分小组-java
查看>>
Android Toast
查看>>
iOS开发UI篇—Quartz2D使用(绘制基本图形)
查看>>
docker固定IP地址重启不变
查看>>
桌面图标修复||桌面图标不正常
查看>>
JavaScript基础(四)关于对象及JSON
查看>>
JAVA面试常见问题之Redis篇
查看>>
jdk1.8 api 下载
查看>>
getElement的几中属性介绍
查看>>
HTML列表,表格与媒体元素
查看>>