bootstrap中如何多次使用一个摸态框
Posted webSong
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了bootstrap中如何多次使用一个摸态框相关的知识,希望对你有一定的参考价值。
/**弹出框设置**/ function showjcziimodal(url, width) { $("#jczii-modal").remove();//如果存在此Id的Modal先remove var modal = $(‘<div id="jczii-modal" class="modal fade .jczii-modal" tabindex="-1" role="dialog"> <div class="modal-dialog" role="document" style="width:‘ + width + ‘"> <div class="modal-content"> </div> </div> </div>‘).modal(); $(‘body‘).append(modal); modal.find(‘.modal-content‘) .load(url, function (responseText, textStatus) { if (textStatus === ‘success‘ || textStatus === ‘notmodified‘) { modal.show(); } }); } //页面所有Modal弹出 $(function () { $(‘*[rel="jczii-modal"]‘).on(‘click‘, function (e) { var modal_width = !!$(this).attr(‘data-width‘) ? $(this).attr(‘data-width‘) : ‘‘; showjcziimodal($(this).attr(‘data-href‘), modal_width); e.preventDefault(); }); })
以上是关于bootstrap中如何多次使用一个摸态框的主要内容,如果未能解决你的问题,请参考以下文章