登录页面 密码文本框text和password相互转换
如何进行转换呢
如下图代码
//js代码
<script type="text/jscript">
function psw(el) {
if (el.value == '密码') {
el.value = '';
el.type = 'password';
}
}
function txt(el) {
if (!el.value) {
el.type = 'text';
el.value = '密码';
}
}
</script>
//php代码
<input type="text" autocomplete="off" name="upwd2" id="upwd2" value="密码"
onfocus="psw(this)"
onblur="txt(this)" class="input_p"/>