/**弹出框设置**/ 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 + '"> <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(); }); })