正在使用Bootstrap-Purr进行警报消息传递。通过使用此功能,警报消息出现并在几秒钟内自动消失。这不应该发生。仅在单击关闭按钮时才应关闭警报消息,然后再对其进行查看。

尝试了Fiddle

$.bootstrapPurr('<strong>My error Mesasge </strong> ,Try Again !', {
    type: 'danger',
    delayPause: true,
    align: 'center',
    allow_dismiss: false,
    allowDismissType: 'click',
    draggable: false,
    width:'350px',
    position:'absolute',
    top:'50px',
});


任何想法将不胜感激。先感谢您。

最佳答案

将“延迟”属性设置为0,就可以了

$.bootstrapPurr('This is another "purr" that will display until manually closed', {
                type: 'danger',
                align: 'left',
                align: 'center',
                delay: 0,
                stackupSpacing: 30
            });


尝试fiddle

关于javascript - Bootstrap Purr警报消息不应自动消除,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/35431323/

10-10 22:03