js实现ATM机存取款功能
网络编程 2021-07-04 15:50www.168986.cn编程入门
这篇文章主要为大家详细介绍了js实现ATM机存取款功能,文中示例代码介绍的非常详细,具有一定的参考价值,感兴趣的小伙伴们可以参考一下
js是一个功能十分强大的脚本语言,通过js能实现很多有意思的demo!而要实现那些功能炫酷、特效美观的东西DOM操作是必不可少且尤为重要的!这个ATM机存取款的案例,就用到js中一些简单的DOM操作来实现其功能。
ATM机案例功能需求
1.用户最多只能有三次输入卡号和密码的机会,如果超过三次,则提示卡号已被锁定
2.用户取款的金额不能大于卡上的账户余额
3.存取功能完成后,要更新相应的余额信息
登录界面代码
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>ATM</title> <script src="ATM.js"></script> <style> div{ width: 300px; height: 200px; margin: 0 auto; border:1px solid black; border-radius: 5px; text-align: center; } p { font-size: 20px; } button { border: 0px; padding: 5px; background-color: green; color: white; } </style> </head> <body> <div> <p>ATM机</p> <p><label>卡号</label><input type="text" id="aount"></p> <p><label>密码</label><input type="password" id="password"></p> <p><button onclick="login()">登录</button></p> </div> </body> </html>
主页界面代码
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>ATM</title> <script src="ATM.js"></script> <style> div{ width: 300px; height: 200px; margin: 0 auto; border:1px solid black; border-radius: 5px; text-align: center; } p { font-size: 20px; } button { border: 0px; padding: 5px; background-color: green; color: white; } </style> </head> <body> <div> <p>ATM机</p> <p><label>余额</label><input type="text" id="balance" value="2000.00" disabled></p> <p><label>存款</label><input type="text" id="deposit"> <button onclick="deposit()">存款</button></p> <p><label>取款</label><input type="text" id="withdraw"> <button onclick="withdraw()">取款</button></p> </div> </body> </html>
js代码
var i = 2; //定义密码输错的次数 //判断输入的卡号是不是数字类型 //返回true,证明不是数字;返回false,证明是数字 function checkNumber(aount){ var pattern=/^[0-9][1-9][0-9]$/; return pattern.test(aount); // return isNaN(aount); } //判断输入的卡号和密码是否为空 function checkNull(aount,password){ if(aount.length>0 && password.length>0){ return true; } return false; } //登录事件 function login(){ var aount=document.getElementById("aount").value; var password=document.getElementById("password").value; if(!checkNull(aount,password)){ alert("卡号和密码不能为空!"); return; //终止登录方法,狼蚁网站SEO优化的代码不会执行 } if(!checkNumber(aount)){ alert("卡号必须为数字!"); return; } if(i>0 && aount=="123456789" && password=="123"){ window.location.href="index.html" rel="external nofollow" ; }else{ if(i == 0){ alert("当前卡号被锁定!"); return; } alert("你还剩下"+i+"次输入卡号和密码的机会"); i--; return; } } //存款 function deposit(){ var balance = parseFloat(document.getElementById("balance").value); //获取余额,并将其转换为数字 var deposit = document.getElementById("deposit").value; if(!deposit.length>0){ alert("请输入您要存款的金额"); return; } if(checkNumber(deposit)){ alert("请输入数字"); return; } balance+=parseFloat(deposit); document.getElementById("balance").value=balance; //修改存款完成以后显示的余额 } //取款 function withdraw(){ var balance = parseFloat(document.getElementById("balance").value); //获取余额,并将其转换为数字 var withdraw = document.getElementById("withdraw").value; if(!withdraw.length>0){ alert("请输入您要取款的金额"); return; } if(checkNumber(withdraw)){ alert("请输入数字"); return; } //判断取款是否大于余额 if(parseFloat(withdraw)>balance){ alert("余额不足!"); } balance-=parseFloat(withdraw); document.getElementById("balance").value=balance; }
运行效果
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持狼蚁SEO。
编程语言
- 如何快速学会编程 如何快速学会ug编程
- 免费学编程的app 推荐12个免费学编程的好网站
- 电脑怎么编程:电脑怎么编程网咯游戏菜单图标
- 如何写代码新手教学 如何写代码新手教学手机
- 基础编程入门教程视频 基础编程入门教程视频华
- 编程演示:编程演示浦丰投针过程
- 乐高编程加盟 乐高积木编程加盟
- 跟我学plc编程 plc编程自学入门视频教程
- ug编程成航林总 ug编程实战视频
- 孩子学编程的好处和坏处
- 初学者学编程该从哪里开始 新手学编程从哪里入
- 慢走丝编程 慢走丝编程难学吗
- 国内十强少儿编程机构 中国少儿编程机构十强有
- 成人计算机速成培训班 成人计算机速成培训班办
- 孩子学编程网上课程哪家好 儿童学编程比较好的
- 代码编程教学入门软件 代码编程教程