gpt4 book ai didi

javascript - 在 bootbox bootstrap jquery 插件中将自定义类添加到警报对话框

转载 作者:搜寻专家 更新时间:2023-11-01 05:10:23 25 4
gpt4 key购买 nike

我正在使用 Bootbox jquery plugin显示模式。

这是显示警报对话框的简单用法:

bootbox.alert({
title: 'Message Title',
message: "this is message Body"
});

这个插件有一个 className 选项来添加自定义类以应用于由 dialog() 方法创建的对话框包装器,但我们不能将它用于 alert () 方法。

将自定义类添加到 alert() 的方法是使用 dialog() 来创建它们。但在这种情况下,每次我们想要一个简单的警报时,我们都必须手动创建像 OK(或 Cancel in prompt() 方法)这样的按钮is 很耗时,像这样:

bootbox.dialog({
message: "I am a custom dialog",
title: "Custom title",
buttons: {
success: {
label: "Success!",
className: "btn-success",
callback: function() {
Example.show("great success");
}
}
});

有没有办法通过 alert() 方法将自定义类添加到警报框?

最佳答案

好消息!您也可以使用警报设置 className(检查代码段)。

$(window).ready(function(){
bootbox.alert({
title: 'Message Title',
message: "this is message Body",
className: "my-popup"
});
});

$(window).ready(function(){
bootbox.alert({
title: 'Message Title',
message: "this is message Body",
className: "my-popup"
});
});
.my-popup .modal-content {
background: #FAEBD7;
}
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css" integrity="sha384-1q8mTJOASx8j1Au+a5WDVnPi2lkFfwwEAa8hDDdjZlpLegxhjVME1fgjWPGmkzs7" crossorigin="anonymous">

<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>

<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js" integrity="sha384-0mSbJDEHialfmuBBQP6A4Qrprq5OVfW37PRR3j5ELqxss1yVqOtnepnHVP9aJ7xS" crossorigin="anonymous"></script>

<script src="https://github.com/makeusabrew/bootbox/releases/download/v4.4.0/bootbox.min.js"></script>

关于javascript - 在 bootbox bootstrap jquery 插件中将自定义类添加到警报对话框,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34786762/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com