我正在使用适用于Android的网络应用程序:这是Chrome中的全屏网页。
我使用相同的html文本输入来执行操作。 但是,文本输入始终保持较早输入的旧值。它是自动完成的。
在其他主题中提出的避免自动完成或杀死高速缓存的解决方案都没有!
我已经尝试过:
1. <input type="text" value="">
2. adding an <input type="text" style="display: none">
3. <input type="text" autocomplete="off"> (also in <form>)
4. <script type="text/javascript">
document.getElementById("myForm").reset();
</script>
标题:
<meta http-equiv="Cache-Control" content="no-cache, no-store, must-revalidate" />
<meta http-equiv="Pragma" content="no-cache" />
<meta http-equiv="Expires" content="0" />
非常感谢。