您是否将这些值明确设置为空白?例如:
<input type="text" name="textfield" value="">
那应该停止浏览器将数据放到不应该放的地方。或者,您可以将
autocomplete属性添加到表单标签:
<form autocomplete="off" ...></form>

您是否将这些值明确设置为空白?例如:
<input type="text" name="textfield" value="">
那应该停止浏览器将数据放到不应该放的地方。或者,您可以将
autocomplete属性添加到表单标签:
<form autocomplete="off" ...></form>