[subModalライブラリ] ダイアログが閉じられた時に処理を行う

説明

subModalライブラリでダイアログが閉じられた時に処理を行うにはshowPopWin()の4番目のパラメータにダイアログが閉じられた際に呼び出される関数を指定します。ただし、これだけでは処理が呼び出されないため、ダイアログに表示されるHTMLファイル内で記述されるスクリプトにwindow.top.hidePopWin(true)とする必要があります。hidePopWin()のパラメータがtrueの時だけ、showPopWin()に指定した処理が呼び出され実行されます。

サンプルプログラム

【HTML】
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html lang="ja">
<head>
<meta http-equiv="content-type" content="text/html;charset=utf-8">
<title>Sample</title>
<link rel="stylesheet" href="css/subModal.css" type="text/css" media="all">
<link rel="stylesheet" href="css/main.css" type="text/css" media="all">
<script type="text/javascript" src="js/common.js"></script>
<script type="text/javascript" src="js/subModal.js"></script>
<script type="text/javascript" src="js/sample.js"></script>
</head>
<body>
<h1>モーダルダイアログ</h1>
</body>
</html>


【HTML】(msg.html)

subModalを使えば手軽にモーダルダイアログを表示することができます。<br>
HTMLファイルを表示することもできるので、いろいろ応用することができます。<br>
クローズボックスがクリックされた際に処理するにはコールバック関数を定義しhidePopWin()のパラメータにtrueを指定します。
<br>
<form>
<input type="button" value="閉じる" onclick="window.top.hidePopWin(true)">
</form>




【sample.js】
window.onload = function(){
showPopWin("msg.html", 400, 240, function(){
alert("ダイアログが閉じられました");
});
}
サンプルを実行
[戻る]