有什么办法,我们可以从客户端脚本检测自动完成的浏览器设置?不同的浏览器有不同的自动完成设置。
我想根据自动完成功能的客户端浏览器设置将 autocomplete="off" 添加到文本字段中。
有什么办法,我们可以从客户端脚本检测自动完成的浏览器设置?不同的浏览器有不同的自动完成设置。
我想根据自动完成功能的客户端浏览器设置将 autocomplete="off" 添加到文本字段中。
你为什么不谷歌它我的朋友......
http://help.dottoro.com/ljdwgiwh.php
Example Code:
用一些文本内容填写用户名和城市字段,然后提交表单。
之后,开始用相同的内容填充这些字段。将针对用户名字段显示一个自动完成窗口。
<head>
<script type="text/javascript">
function DisableAutoComp () {
var username = document.getElementById ("username");
if ('autocomplete' in username) {
username.autocomplete = "off";
}
else {
// Firefox
username.setAttribute ("autocomplete", "off");
}
}
</script>
</head>
<body>
Fill the user name and city fields with some text content, and submit the form.<br />
After that, start to fill these fields with the same content. An autocomplete window will displayed for to the user name field.
<br /><br />
<form method="post" action="#URL#">
User name, with autocompletion:
<input type="text" id="username" name="username" autocomplete="on" />
<br />
City, without autocompletion:
<input type="text" name="city" autocomplete="off" />
<br /><br />
<input type="submit" value="Send" />
</form>
<br />
<button onclick="DisableAutoComp ();">Disable autocompletion!</button>
</body>