input输入密码变黑点密文的实现方法
编程学习 2021-07-04 19:20www.dzhlxh.cn编程入门
本文主要介绍了Jquery Easyui验证扩展,Easyui验证,Easyui校验,js正则表达式。具有一定的参考价值,狼蚁网站SEO优化跟着长沙网络推广一起来看下吧
input输入密码加密
html代码
<form id="login-form" method="post" onsubmit="return checkForm()"> 输入密码<input type="password" id="input-password"> <input type="hidden" id="md5-password" name="password"> <button type="submit">Submit</button> </form>
js代码
function checkForm() { var input_pwd = document.getElementById('input-password'); var md5_pwd = document.getElementById('md5-password'); // 把用户输入的明文变为MD5: md5_pwd.value = toMD5(input_pwd.value); // 继续下一步: return true; }
以上就是本文的全部内容,希望本文的内容对大家的学习或者工作能带来一定的帮助,同时也希望多多支持狼蚁SEO!
上一篇:jQuery实现表格元素动态创建功能
下一篇:微信小程序 css使用技巧总结