h2タグの文字です。クリックしてください。

pタグで指定した文字です。ダブルクリックしてください。

以下のイメージ内をクリックしてください。

段落内でマウスのボタンを押してください。


<!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>
</head>
<body>
<h2 onclick="alert('h2タグの段落をクリックしました')">h2タグの文字です。クリックしてください。</h2>
<p ondblclick="alert('pタグの段落をダブルクリックしました')">pタグで指定した文字です。ダブルクリックしてください。</h2>
<p><img onclick="alert('event.type = '+event.type+'\n'+
'event.screenX = '+event.screenX+'\n'+
'event.screenY = '+event.screenY)" src="images/img03.gif">以下のイメージ内をクリックしてください。</p>

<p onmousedown="alert('マウスのボタンが押されました。')">段落内でマウスのボタンを押してください。</p>
</body>
</html>


★解説★