次のコードは jquery では問題なく動作しますが、ブートストラップでスタックします。ブートストラップの同等のコードは何ですか。
$('#window_open').dialog({
autoOpen: false,
resizable: false
});
次のコードは jquery では問題なく動作しますが、ブートストラップでスタックします。ブートストラップの同等のコードは何ですか。
$('#window_open').dialog({
autoOpen: false,
resizable: false
});
あなたが探しているのはModalコンポーネントです。このようなもの:
<div id="boot_window_open" class="modal hide fade" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>
<h3 id="myModalLabel">Hello</h3>
</div>
<div class="modal-body">
<p>Bootstrap: Hello There</p>
</div>
<div class="modal-footer">
<button class="btn" data-dismiss="modal" aria-hidden="true">Close</button>
<button class="btn btn-primary">OK</button>
</div>
</div>
比較のためにこのフィドルを参照してください。