3

我正在尝试将 Toastr js 设置为某种对话框按钮。

我需要的只是我的 Toastr 消息上的“批准”和“拒绝”按钮

toastr.options = {
    "closeButton": true,
    "debug": false,
    "positionClass": "toast-bottom-left",
    "onclick": null,
    "showDuration": "1000",
    "hideDuration": "1000",
    "timeOut": "5000",
    "extendedTimeOut": "1000",
    "showEasing": "swing",
    "hideEasing": "linear",
    "showMethod": "fadeIn",
    "hideMethod": "fadeOut"
}
toastr.info("Do you wish to continue");

有谁知道这是否可能或知道任何其他允许我这样做的脚本?

请注意

我知道这可以用 Modal 来完成,但我想尽量避免它。

4

2 回答 2

6

当然。您可以将任何您想要的 HTML 添加到 toast,然后将事件处理程序连接到它。有关更多详细信息和示例,请参阅演示。http://codeseven.github.io/toastr/demo.html

于 2014-07-08T23:34:31.687 回答
1

您可以为 toastr js添加按钮

例如,ok单击按钮以清除toastr

toastr.info('message <button type="button" class="btn clear btn-toastr" onclick="toastr.clear()">OK</button>' , 'Studio Message:');
于 2017-12-21T14:39:43.793 回答