问题
Possible Duplicate:
How do you disable browser Autocomplete on web form field / input tag?
I entered a value in input text for example: email@email.com, after when I entering another value same area, seems the previously entered data (email@email.com).But I don't want to appear it. How can I do this?
回答1:
You could use "placeholder"
<input type="text" placeholder="email@email.com">
来源:https://stackoverflow.com/questions/13607378/input-text-without-previously-entered-value