Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有没有办法摆脱输入类型密码上的 OSX / web-kit 大写锁定指示器? http://jsfiddle.net/EaTf4/
<input type="password" class="foo"/>
大写锁定指示器是特定于浏览器的(webkit?)
您可以在 keyup 事件中使用带有一点 jQuery 的默认文本字段,将文本替换为 • 项目符号,并将实际值保存在变量中。这是一个古老的小提琴,可以选择在键入时显示密码。
$('#clearpasstextfield').change(function(){ // store value, replace field with bullets });
http://jsfiddle.net/GDmac/DdmuZ/