来自隐藏块的Bootstrap模态

时间:2017-06-30 12:38:11

标签: twitter-bootstrap modal-dialog

我有一些像bootrstrap示例的代码:

<!-- Button trigger modal -->
<button type="button" class="btn btn-primary btn-lg" data-toggle="modal" data-target="#myModal">
  Launch demo modal
</button>

<div class="hider">
<!-- Modal -->
<div class="modal fade" id="myModal" tabindex="-1" role="dialog" aria-labelledby="myModalLabel">
  <div class="modal-dialog" role="document">
    <div class="modal-content">
      <div class="modal-header">
        <button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">&times;</span></button>
        <h4 class="modal-title" id="myModalLabel">Modal title</h4>
      </div>
      <div class="modal-body">
        ...
      </div>
      <div class="modal-footer">
        <button type="button" class="btn btn-default" data-dismiss="modal">Close</button>
        <button type="button" class="btn btn-primary">Save changes</button>
      </div>
    </div>
  </div>
</div>
</div>

CSS

.hider {
  display: none;
}

但我的模态并没有。工作。模态必须与display:none; 请帮帮我

UPD添加了演示http://jsfiddle.net/r7ahmcu9/

UPD2我的模态是隐藏在移动版本中的块,我无法从隐藏中删除display:none

2 个答案:

答案 0 :(得分:1)

您可以在显示/隐藏事件时显示/隐藏块:

return string.Format ("{Timestamp}, {Humidity}, {Temp}, {Light}, {Button}", Timestamp, Humidity, Temp, Light, Button);
分叉小提琴 - &gt;的 http://jsfiddle.net/1o7sd2sj/

BTW:你确实意识到你在小提琴中使用了Bootstrap 2.3.1(!! ??)?

答案 1 :(得分:0)

好的,因为你说你可以摆脱'display:none; then put modal html outside the hider`类。

例如:你可以将modal的HTML放在正文的开头。它会在调用

时起作用

DEMO https://jsfiddle.net/princesodhi/j5pan9hy/

注意:我检查过你是个小提琴。这是使用真正旧版本的Bootstrap