我想使用PNotify提示对话框输入密码。有谁知道如何将输入类型更改为密码?我无法在文档中看到任何提及它的内容。 http://jsfiddle.net/gusLfnux/1/
new PNotify({
title: 'Password Required',
text: 'Enter Password',
icon: 'glyphicon glyphicon-lock',
styling: 'bootstrap3',
hide: false,
addclass: 'stack-modal',
confirm: {
prompt: true
},
buttons: {
closer: false,
sticker: false
},
history: {
history: false
}
})
答案 0 :(得分:0)
通过向confirm对象添加自定义css类来管理以获得我想要的结果。工作示例http://jsfiddle.net/gusLfnux/2/
的CSS:
.password {
-webkit-text-security: square !important;
}