以前は JQuery UI のダイアログを使用していましたがopen
、ダイアログが開いたときに実行する Javascript コードを指定できるオプションがありました。そのオプションを使用して、私が持っている機能を使用してダイアログ内のテキストを選択したでしょう。
今、ブートストラップのモーダルを使用してそれを行いたいです。以下は HTMl コードです。
<div id="code" class="modal hide fade">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>
<h3>Modal header</h3>
</div>
<div class="modal-body">
<pre>
print 'Hello World'
そして、モーダルを開くボタンについては:
<a href="#code" data-toggle="modal" class="btn code-dialog">Display code</a>
ボタンの onclick リスナーを使用しようとしましたが、モーダルが表示される前に警告メッセージが表示されました。
$( ".code-dialog" ).click(function(){
alert("I want this to appear after the modal has opened!");
});