Bootstrap 3 - 使用预定义的主体

时间:2016-11-30 05:51:23

标签: javascript jquery ajax twitter-bootstrap

我正在运行一个JS函数,之后我想显示一个模态,询问用户预定义的问题。

由于模态将由于之前的AJAX成功或错误结果而被加载,因此我没有通过点击某些类型的按钮来启动模态,因此无需附加要附加的模态体更新。我该怎么做?

基本上,我正在努力实现这个目标:

$("#myModal").on("show.bs.modal", function(e) {
    $(this).find(".modal-body").html('<p>this is a test</p>');
});

以这种方式: //显示警告模式以通知用户

success: function(data) {
    $('#mod_output').html(data);
    drawVisualization();


    // show alert modal to inform user of 
    $("#AlertModal").modal();
    $("AlertModal").find(".modal-body").html('<p>this is a test</p>');
}

感谢

0 个答案:

没有答案