7.イベント<34p>


<html>
<head>
<title>event03</title></head>
<body>
<h3>イベントのタイプを取得します。</h3>
<!--クリックしたときにイベント-->
<input type="button"Value="onClick"style="HEIGHT:50px;WIDTH:200px"onClick="alert('イベントタイプ:'+event.type)">
<p>
<!--マウスアウトしたときにイベント-->
<input type="button"Value="onMouseOut"style="HEIGHT:25px;WIDTH:115px"onMouseOut="alert('イベントタイプ:'+event.type)">
</p>
<p>
<!--マウスダウンしたときにイベント-->
<input type="button"Value="onMouseDown"style="HEIGHT:25px;WIDTH:115px"onMouseDown="alert('イベントタイプ:'+event.type)">
</p>
<p>
<!--マウスアップしたときにイベント-->
<input type="button"Value="onMouseUp"style="HEIGHT:25px;WIDTH:115px"onMouseUp="alert('イベントタイプ:'+event.type)">
</p>
<p>
<!--マウスオーバーしたときにイベント-->
<input type="button"Value="onMouseOver"style="HEIGHT:25px;WIDTH:115px"onMouseOver="alert('イベントタイプ:'+event.type)">
</p>
</body>
</html>



イベントのタイプを取得します。