700字范文,内容丰富有趣,生活中的好帮手!
700字范文 > input密码输入框的显示与隐藏

input密码输入框的显示与隐藏

时间:2018-11-09 12:18:46

相关推荐

input密码输入框的显示与隐藏

<!DOCTYPE html><html><head><title></title><style type="text/css">img {vertical-align:top;width: 25px;}</style></head><body><input type="text" placeholder="账号" /><br /><br /><input type="password" value="" placeholder="请输入密码" id="mima"><img src="./img/close.png" alt="" id="showText" onclick="hideShowPsw();"><script>var demoImg = document.getElementById("showText");var mima = document.getElementById("mima");function hideShowPsw() {if (mima.type == "password") {mima.type = "text";demoImg.src = "./img/open.png";} else {mima.type = "password";demoImg.src = "./img/close.png";}}</script></body></html>

效果如图:

本内容不代表本网观点和政治立场,如有侵犯你的权益请联系我们处理。
网友评论
网友评论仅供其表达个人看法,并不表明网站立场。