<input type="text" name="title" autocomplete="off" placeholder="请输入标题">
如果发现很多设置了不起这作用。很可能是表单中有密码这种类型的input例如:<input type="password" name="pass">
解决方法是给的表单添加autocomplete="new-password"属性即可:
<input type="password" autocomplete="new-password" placeholder="验证码">
这样应该就生效了。