一:获取焦点时 提示字消失
<
input
type
=
"text"
name
=
"textfield"
value
=
"这里是提示内容"
onclick
=
"if(value==defaultValue){value='';this.style.color='#000'}"
onBlur
=
"if(!value){value=defaultValue;this.style.color='#999'}"
/>
二:修改文字时 提示字消失(但是placeholder有兼容性的问题)
<
input
class
=
"text"
type
=
"email"
name
=
"email"
spellcheck
=
"false"
placeholder
=
"邮 箱"
autofocus >
<
input
class
=
"text"
type
=
"password"
name
=
"password"
placeholder
=
"密 码"
>
<
input
class
=
"button"
type
=
"submit"
value
=
"登 录"
>