是否可以在不同位置显示多个Toast消息?

时间:2014-11-06 13:19:16

标签: toast toastr

 <script>
    var options1 = { positionClass: 'toast-top-full-width', timeOut: 0};
    toastr.error('Message1', 'Title1', options1);

    var options2 = { positionClass: 'toast-bottom-right', timeOut: 5000}
    toastr.success('Message2', 'Title2', options2);
</script>
成功的烤面包在5s后消失但是它没有在右下角显示

1 个答案:

答案 0 :(得分:-1)

demo site在识别表单设置更改之前使用toastr.clear()调用,结果toastr反映新选项。我建议将此调用合并到您的代码逻辑中。