禁用文本输入历史

可能重复:
如何禁用Web表单域/输入标签上的浏览器自动完成功能?

我正在构建一个将接受信用卡数据的应用程序。 我想确保浏览器不记得输入信用卡号码的文本内容。 我尝试传递以下标题:

header("Expires: Tue, 03 Jul 2001 06:00:00 GMT");
header("Last-Modified: " . gmdate("D, d M Y H:i:s") . " GMT");
header("Cache-Control: no-store, no-cache, must-revalidate, max-age=0");
header("Cache-Control: post-check=0, pre-check=0", false);
header("Pragma: no-cache");

不过,一旦页面重新加载,我可以点击信用卡文本输入字段,它会让我看到我之前写的东西。 我怎样才能防止这一点?


<input type="text" autocomplete="off"/>

应该管用。 或者,使用:

<form autocomplete="off" … >

对于整个表单(请参阅此相关问题)。


<input type="text" autocomplete="off" />
链接地址: http://www.djcxy.com/p/26427.html

上一篇: disable text input history

下一篇: Storing Credit Card Info vs Re typing Info