Toast用于创建类似警报框的内容,并在发生某些情况时在短短的时间内(如几秒钟)显示。就像用户单击按钮或提交表单以及执行许多其他操作一样。
- 班级:
- .toast:有助于制作吐司
- .toast-header:它有助于创建吐司头
- .toast-body:它有助于创建烤面包体
示例:如何制作吐司。
注意:应使用jQuery初始化。只需选择指定的元素,然后调用此toast方法即可。Creating toast GeeksforGeeks
.toast
Click the button to show the toast message.
Toast HeaderSome text inside the toast body输出:
吐司方法:
例子:
Bootstrap Example
GeeksforGeeks
.toast(options)
When we click the button below there
would be delay of the toast to 8000
milliseconds.
Toast Header
Some text inside the toast body
输出:
- .toast(“ show”):显示吐司
- .toast(“ hide”):隐藏烤面包
- .toast(“ dispose”):处置面包
例子:
Bootstrap Example GeeksforGeeks
.toast("show"),.toast("hide"),.toast("dispose")
Click on the buttons below to perform the actions.
Toast HeaderSome text inside the toast body输出:
吐司活动:
例子:
Bootstrap Example
GeeksforGeeks
Toast Events
show.bs.toast,
shown.bs.toast,
hide.bs.toast,
hidden.bs.toast
Click on the button below to perform toast.
Toast Header
Some text inside the toast body
输出:
show.bs.toast:在要显示吐司时发生。
shown.bs.toast:显示吐司时发生。
hide.bs.toast:当烤面包即将被隐藏时,就会发生这种情况。
hidden.bs.toast:当烤面包完全隐藏时会发生。