我在我的应用程序中使用 Bootstrap 对话框链接。我在 html 的 head 部分中包含了依赖项
<script src="https://code.jquery.com/jquery-2.1.4.min.js"></script>
<script src="js/bootstrap.min.js" type="text/javascript"></script>
<script src="js/bootstrap-paginator.js" type="text/javascript"></script>
<script src="js/bootstrap-dialog.js" type="text/javascript"></script>
我收到错误
Uncaught TypeError: Cannot read property 'css' of undefined
在行中
$backdrop.css('z-index', zIndexBackdrop + (dialogCount - 1) * 20);
在bootstrap-dialog.js中 $backdrop
是null
.
这是我写的代码
callback.prototype.success = function(XMLHttpRequest,textStatus){
showDialog("Title",
"Message",
BootstrapDialog.TYPE_SUCCESS);
}
function showDialog(title,msg,type){
BootstrapDialog.show({
title: title,
message: msg,
type : type,
buttons: [{
label: 'OK',
action: function(dialog) {
dialog.close();
}
}]
});
}
我感谢您的所有帮助。