When I input some text into an input element a d开发者_高级运维efault suggest box shows up displaying previously entered strings. How to prevent the default suggest box from showing up?
Use autocomplete attribute with an off value. e.g:
<input type="text" name="text1" autocomplete="off"/>
精彩评论