登錄頁面 密碼文本框text和password相互轉(zhuǎn)換
如何進行轉(zhuǎn)換呢
如下圖代碼
//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"/>