你的位置:首页 > 软件开发 > ASP.net > 基于bootstrap的Dialog

基于bootstrap的Dialog

发布时间:2015-11-19 12:00:49
function yms_Dialog(container_id, modal_path,handle_function) { /// <summary> /// 方法介绍: 上海一门式Dialog(bootstrap框),框的地址为部分视图(注意框上弹 ...
function yms_Dialog(container_id, modal_path,handle_function) {  /// <summary>  ///     方法介绍:  上海一门式Dialog(bootstrap框),框的地址为部分视图(注意框上弹框时,父框和子框id不能冲突)  /// </summary>  /// <param name="container_id">容器的ID</param>  /// <param name="modal_path">框的地址</param>  var div_container = "<div id='" + container_id + "'></div>";  $("body").append(div_container);  $("#" + container_id).load(modal_path, function () {    $("#" + container_id).find('#myModal').modal({      show: true,      backdrop: true    });    $("#" + container_id).find('#myModal').on('hide.bs.modal', function () {      // 执行一些动作...      $(this).remove();      $("#" + container_id).remove();    })    if (handle_function != undefined)    {      handle_function();    }  });}if (typeof jQuery == 'undefined') {  alert("请先导入jQuery");} else {  jQuery.extend({    yms_Dialog: yms_Dialog  });}

原标题:基于bootstrap的Dialog

关键词:

*特别声明:以上内容来自于网络收集,著作权属原作者所有,如有侵权,请联系我们: admin#shaoqun.com (#换成@)。

可能感兴趣文章

我的浏览记录