“启动框警报”框中的新行

2022-09-04 07:22:01

我想在我的启动盒警报框中创建一个新行。我知道在Javascript中你可以使用,但这似乎不起作用。以下是我尝试过的:\n

bootbox.alert("Hello \n world");

答案 1

你可以使用html来做到这一点:

bootbox.alert("Hello <br> world!");

会做的


答案 2

带有确认消息

$(function () {
    $(".confirm").click(function (e) {
        e.preventDefault();
        bootbox.confirm({
            message: "<h3>Hello</h3> <br> world!",
            buttons: {
            confirm: {
                label: 'yes',
                className: 'btn-success'
            },
            cancel: {
                label: 'no',
                className: 'btn-danger'
            }
        },
        callback: function (result) {
            if (result)
                console.log('yes');
        }
        });
        
    });
});
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css" />
<script src="https://code.jquery.com/jquery-1.11.3.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/bootbox.js/4.4.0/bootbox.min.js"></script>

<a href="http://www.example.com/" action="deleteElement" class="btn btn-danger confirm">Delete</a>