情報ダイアログを表示する

<!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/default.css" type="text/css" media="all">
<link rel="stylesheet" href="css/alert.css" type="text/css" media="all">
<link rel="stylesheet" href="css/main.css" type="text/css" media="all">
<script type="text/javascript" src="js/prototype.js" charset="shift_jis"></script>
<script type="text/javascript" src="js/effects.js" charset="shift_jis"></script>
<script type="text/javascript" src="js/window.js" charset="shift_jis"></script>
<script type="text/javascript"><!--
var stm;
function openInfo(){
Dialog.info("データを読み込み中です", {
windowParameters: {width:320, height:100},
showProgress: true
});
stm = (new Date()).getTime();
setInterval("displayTime()", 1000);

}
function displayTime(){
var ctm = Math.floor( ((new Date()).getTime() - stm) / 1000);
Dialog.setInfoMessage(ctm+"秒経過しました");
}
// --></script>
</head>
<body>
<h1>情報ダイアログを表示する</h1>
<form method="get" action="./win.cgi">
<input type="button" value="情報ダイアログを開く" onClick="openInfo()">
</form>
</body>
</html>
サンプルを実行
[戻る]
prototype.jsパーフェクトリファレンス説明などは本書を参考にしてください。