我正在使用 Bootstrap js 来显示一个模式窗口,用户可以在其中添加一些值。如果添加有问题,我想通过使用 pnotify 通知来通知它。
到目前为止一切都很好,问题是 pnotify 通知出现在模态窗口的深色背景下,而我希望出现在它之上。
$.pnotify({
title: 'Regular Notice',
text: 'Check me out! I\'m a notice.',
nonblock: true,
history: false,
delay: 60000
});
这是它目前的显示方式: http ://screencloud.net/v/ihln
我怎么能做到这一点?
谢谢!