掩码字符-6ren"> 掩码字符-是否有任何跨浏览器的方式来获取 中的密码屏蔽字符?字段,或者,除此之外,设置它? 例如,OSX 上的 Chrome & Firefox & Safari 使用 • ,而 iOS 7 上的 Safar-6ren">
gpt4 book ai didi

html - 获取或设置<输入类型="password">掩码字符

转载 作者:行者123 更新时间:2023-12-05 07:59:55 26 4
gpt4 key购买 nike

是否有任何跨浏览器的方式来获取 <input type="password"> 中的密码屏蔽字符?字段,或者,除此之外,设置它?

例如,OSX 上的 Chrome & Firefox & Safari 使用 ,而 iOS 7 上的 Safari 使用 .也许其他浏览器可能会使用老式的 * - 我不知道。

最佳答案

好像之前也有人问过这个问题。查看change password char in HTML这表明它无法完成。

快速搜索表明,它可以通过伪造它通过 JS 完成,并且不能在常规密码字段上完成,因为它是由浏览器定义的。引用http://www.htmlforums.com/showpost.php?p=655392&postcount=4

<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN"
"http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<title></title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">

<script type="text/javascript">
var k=0;
var df;
window.onload=function() {
df=document.forms[0];
df[1].onkeyup=function() {
df[0].value+=df[1].value.charAt(k);
k++;
for(c=0;c<df[1].value.length;c++) {
df[1].value=df[1].value.replace(df[1].value.charAt(c),'#');
}
}
}
</script>

</head>
<body>

<noscript>
<div>
Without javascript enabled you will be unable to login
</div>
</noscript>

<form action="http://www.google.com/">
<div>
<input type="hidden" name="password">
<input type="text">
<input type="submit" value="submit password">
</div>
</form>

</body>
</html>

关于html - 获取或设置<输入类型="password">掩码字符,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20083876/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com