PNotify 提示的密码输入
Password input for PNotify prompt
我想使用 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
}
})
通过向确认对象添加自定义 css class 设法获得了我想要的结果。工作示例 http://jsfiddle.net/gusLfnux/2/
css:
.password {
-webkit-text-security: square !important;
}
我想使用 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
}
})
通过向确认对象添加自定义 css class 设法获得了我想要的结果。工作示例 http://jsfiddle.net/gusLfnux/2/
css:
.password {
-webkit-text-security: square !important;
}