我正在使用Pnotify插件,但没有显示更接近的按钮。
new PNotify({
title: 'Sucesso',
text: response.message,
type: 'success',
styling: 'bootstrap3',
closer: true,
labels: {close: "Fechar", stick: "Manter"}
});
有关此行为的任何想法?
包含的文件是: pnotify.css pnotify.js
答案 0 :(得分:1)
阅读documentation of Pnotify后,您必须在closer
选项和buttons {}
内包裹labels
。
new PNotify({
title: 'Sucesso',
text: response.message,
type: 'success',
styling: 'bootstrap3',
buttons: { closer: true,
labels: {close: "Fechar", stick: "Manter"}
},
});