2011-12-15から1日間の記事一覧

【JS】モーダルの子画面ダイアログを作成する

モーダル * モーダルレス(window.open())だと、親画面を弄れてしまうので、モーダル(window.showModalDialog())について記す。 サンプル 親画面 <html> <head> <title>sample</title> <script type="text/javascript"> function showModal(targetID){ var returnValue = window.showModalDialog( "sampleModal.html", </head></html>…