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

这个问题在这里已经有了答案:

  • 如何禁用Web表单域/输入标签上的浏览器自动完成功能? 58个答案

  • autocomplete="off"应该做的伎俩!

    把它放在你的<form>标签或每个<input>标签中,如下所示:

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

    对于每个input字段添加

    autocomplete="off"
    

    所以:

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

    请参阅https://developer.mozilla.org/en/How_to_Turn_Off_Form_Autocompletion

    此外,这可能是一个重复的如何禁用Web表单域/输入标签上的浏览器自动完成?

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

    上一篇: Is there a way to disable auto fill for forms on website?

    下一篇: Preventing Browser Text Input Suggestions