密码的显示与隐藏 只需切换type 为text,或者password。
html
js
$("#openEye").click(function(){ $("#password").attr("type","password"); $("#openEye").hide(); $("#closeEye").show(); }); $("#closeEye").click(function(){ $("#password").attr("type","text"); $("#closeEye").hide(); $("#openEye").show(); });