Is there a way to disable auto fill for forms on website?

This question already has an answer here:

  • How do you disable browser Autocomplete on web form field / input tag? 58 answers

  • autocomplete="off" should do the trick!

    Put this in your <form> tag or in every <input> tag like this:

    <form autocomplete="off" />
    <!-- OR -->
    <input type="text" autocomplete="off" value="Text" />
    

    For each input field add

    autocomplete="off"
    

    So:

    <input type="text" name="demo" autocomplete="off" value="test" />
    

    See https://developer.mozilla.org/en/How_to_Turn_Off_Form_Autocompletion

    Also this maybe a duplication of How do you disable browser Autocomplete on web form field / input tag?

    链接地址: http://www.djcxy.com/p/26432.html

    上一篇: 有没有办法阻止浏览器自动填充输入框?

    下一篇: 有没有办法在网站上禁用自动填充表单?