扩展bootstrap的modal模态框-动态添加modal框-弹出多个modal框
程序员文章站
2023-10-23 19:26:07
js代码
function initview(_box){
var $p = $(_box || document);
$('a[target="...
js代码
function initview(_box){ var $p = $(_box || document); $('a[target="dialog"]', $p).each(function(event){ $(this, $p).unbind('click').click(function(event){ openmodal(event); }); }); } $(function(){ initview(); }); /**关闭modal*/ function hidemodal(obj){ var modal = $(obj).parents("div.modal"); if(modal.length > 0){ modal.remove(); initview(); } } /**打开modal*/ function openmodal(event){ // var this = $(this); var $this = $(event.currenttarget); var _url = $this.attr("href"); var _title = $this.attr("title"); var _id; _id = dialog.content(); var options = { backdrop: false, keyboard: true, show: true }; $('#' + _id).modal(options); var modal = $('#' + _id); if(typeof(_title) != "undefined"){ if(modal.find('.modal-title').length <= 0){ var header = dialog.header({title : _title}); $($.parsehtml(header)).appendto(modal.find(".modal-content")); }else{ modal.find('.modal-title').text(_title); } if(modal.find('.modal-body').length <= 0){ var _body = dialog.body; $($.parsehtml(_body)).appendto(modal.find(".modal-content")); } modal.find(".modal-body").load(_url, $.proxy(function () { modal.trigger('loaded.bs.modal'); initview(); }, this)); }else{ modal.find(".modal-content").load(_url, $.proxy(function () { modal.trigger('loaded.bs.modal'); initview(); }, this)); } //阻止事件默认行为 event.preventdefault(); } //modal model //to strat if(!$(window).data("_modal_id")){ $(window).data("_modal_id", 0); } var dialog = { header : function(options){ var template = '<div class="modal-header">' + '<button type="button" class="close" aria-label="close" onclick="hidemodal(this);"><span aria-hidden="true">×</span></button>' + '<h4 class="modal-title">' + options.title + '</h4>' +'</div>'; return template; }, content : function(){ var _modal_id = $(window).data("_modal_id"); var _id = "_modal_id_" + _modal_id; _modal_id ++; $(window).data("_modal_id", _modal_id); var template = '<div class="modal fade" tabindex="-1" role="dialog" id="'+ _id +'">' + '<div class="modal-dialog modal-lg" role="document" aria-hidden="true">' + '<div class="modal-content">' + '</div>' + '</div>' +'</div>'; $(template).appendto('body'); initview(); return _id; }, body : '<div class="modal-body"></div>' }; //to end
页面代码:
<a href="select.html" rel="external nofollow" id="signid" class="btn btn-info" <span style="background-color: rgb(255, 255, 102);">target="dialog"</span> title="请选择用餐类型">签到</a>
页面上只要在a标签后加上target="dialog",并且提供href外部链接地址就可以弹出modal框
以上所述是小编给大家介绍的扩展bootstrap的modal模态框-动态添加modal框-弹出多个modal框,希望对大家有所帮助
上一篇: php实现文件下载实例分享
下一篇: 枸杞和茶叶能一起泡吗
推荐阅读
-
扩展bootstrap的modal模态框-动态添加modal框-弹出多个modal框
-
扩展bootstrap的modal模态框-动态添加modal框-弹出多个modal框
-
bootstrap 弹出框modal添加垂直方向滚轴效果
-
解决bootstrap中使用modal加载kindeditor时弹出层文本框不能输入的问题
-
整理:手机端弹出提示框,使用的bootstrap中的模态框(modal,弹出层),比kendo弹出效果好
-
弹出模态框modal的实现方法及实例
-
使用Bootstrap过渡效果Transition模态框(Modal)的方法
-
bootstrap 弹出框modal添加垂直方向滚轴效果
-
bootstrap modal弹出框的垂直居中
-
BootStrap中的模态框(modal,弹出层)功能示例代码