私のダイアログボックスはdivの下で定義されています
#dialogbox
ダイアログボックスが開いたら、アラートが表示されるようにイベントをトリガーします。使用しているコードは次のとおりです。
$("#dialogbox").dialog({open: function(){
alert("OPEN");
}
});
しかし、これはダイアログボックスが開いたときにトリガーされないようです
これを使用できます:
$( ".selector" ).dialog({
open: function( event, ui ) {}
});
またはイベントリスナー.on
$( ".selector" ).on( "dialogopen", function( event, ui ) {} );
このページの詳細:
これを試して:
HTML:
<div id="dialogbox"></div>
<input id="mybutt" type="button" value="Click Me">
Javascript/jQuery:
$("#dialogbox").dialog({
autoOpen:false,
modal:true,
title: "Use of Open event",
width:300,
open: function( event, ui ) {
alert('hello');
}
});
$('#mybutt').click(function() {
$('#dialogbox').html('<h2>Watch this</h2>An alert box should have opened');
$('#dialogbox').dialog('open');
});
focusイベントを使用することもできます ドキュメントはここをクリック
[OK]ボタンをクリックすると、アラートが表示されます。
$( "#WaitingDialog").html("Message you want to display").dialog({
modal: true,
buttons: {
Ok: function() {
alert("hello");
}
}});
モーダルを開くとアラートが表示されます
$( "#WaitingDialog").html("Message you want to display").dialog({
modal: true,
buttons: {
open: function( event, ui ) {
alert('hello');
}
}});