ウインドウのリサイズや移動をしてください。

onmoveイベントは取得することができません。


<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Script-Type" content="text/javascript">
<meta http-equiv="Content-Type" content="text/html; charset=Shift_JIS">
<meta http-equiv="Content-Style-Type" content="text/css">
<title>ウインドウがリサイズ、移動された時に処理したい</title>
<script type="text/JavaScript">
<!--
function resizechk() {
alert("ウインドウがリサイズされました。");
}
function movchk() {
alert("ウインドウが移動されました。");
}
// -->
</script>
</head>
<body onresize="resizechk()" onmove="movchk()">
<p>ウインドウのリサイズや移動をしてください。</p>
<p>onmoveイベントは取得することができません。</p>
</body>
</html>


★解説★