使用show without alert,提示或确认

时间:2014-02-14 00:10:55

标签: bootbox

是否需要使用bootbox.alert("message",function(){example.show("another message")};或bootbox.prompt / confirm来使用show?还有办法改变show show的位置吗?默认情况下,它显示在靠近右下角。

1 个答案:

答案 0 :(得分:1)

如果我是正确的,show就是让Example对象显示自己(jquery show)。如果是这种情况,不需要使用bootbox方法来使用show,因为它是jquery中的方法。至于是否显示Example对象的位置,这绝对是可能的。我不确定,但一种方法是编写自定义CSS。当我检查'show'的样式时,会出现这种情况:

.bb-alert {
position: fixed;
bottom: 25%;
right: 0;
margin-bottom: 0;
font-size: 1.2em;
padding: 1em 1.3em;
z-index: 2000;
}

您可以通过更改css中的“bottom”或“right”元素来更改Example对象的位置。