我尝试使用相同输入中的信息制作表单。它在所有输入中都可以正常工作,但是在密码中,如果它可以在用户输入密码时更改为点会更好。我希望它仅在用户输入密码时输入文本并更改为输入密码。问题出在最后一行代码中:
我在这里生活:http: //jsfiddle.net/Nt9gx/
<form>
<input type="text" name="name" value="name"
onfocus="if (this.value=='name') this.value = '';"
onblur="if (this.value=='') this.value = 'name';"
/>
<input type="text" name="password" value="password"
onfocus="if (this.value=='password') this.value = '' type = password;"
onblur="if (this.value=='') this.value = 'password';"
"if (this.value!=''|| 'password') type = password ;"
/>
</form>