bootstrap bootboxjs模态体出现一次。 PHP

时间:2015-09-17 01:45:40

标签: php jquery twitter-bootstrap modal-dialog bootbox

模特在身体中的竞争只是第一次显示,在我关闭模态并重新打开之后,模态体是空的。

观点:

<a href="#del" onclick="delete();"> delete </a>

<--contend to show in modal begin-->
<div class="content-row" id="confirm" style="display:none">
       <?php function(params); ?> 
       <p><?php function(params1); ?></p>
</div>
<--contend to show in modal end-->

<--modal begin-->
<div id="bootbox-options" class="modal fade">
    <div class="modal-dialog">
        <div class="modal-content">
          <!-- dialog body -->
          <div class="modal-body">
            <button type="button" class="close" data-dismiss="modal">&times;</button>
          </div>
        </div>
     </div>
</div> 
<--modal end-->

function()根据视图返回一个字符串。

JS中的

function delete() {

bootbox.dialog({
    message: $("#confirm").css("display","block"),
    title: 'TITLE',
    buttons: {
        cancel: {
            label: "<i class='fa fa-times'></i>&nbsp;&nbsp;Cancel",
            className: "btn-danger",
            callback: function() {
            }
        }
    }
});
}

有人知道我为什么要丢失代码以模态显示?

1 个答案:

答案 0 :(得分:1)

  function myfunc() {
        $(document).ready(function () {
            $("#myModal").modal('show');
        });
    }

这是用于显示模态的JSquery