サンプルコード
1 2 |
<button>open</button> <div id="msg">hello</div> |
1 2 3 4 5 6 7 8 9 10 11 12 13 |
$('button').click(function() { $('#msg').dialog('open'); }) $('#msg').dialog({ autoOpen: false, buttons: { 'OK': function() { $(this).dialog('close'); } }, title: 'Title', modal: true, }) |
参考サイト
Dialog | jQuery UI
https://jqueryui.com/dialog/