書式
				<タグ名 onMouseDown="イベント発生時の処理">
				オブジェクト.onmousedown = "イベント発生時の処理"
			
			
		
		
		
		
				説明
					マウスの左ボタンが押された時に発生するイベントです。
				
 
			
				
				
			<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
			<html>
			 <head>
			  <meta http-equiv="content-type" content="text/html;charset=utf-8">
			  <title>Sample</title>
			  <script type="text/javascript"><!--
			  window.onload = function() {
			   document.getElementById("tBtn").onmousedown = function(){
			    document.getElementById("result").innerHTML = "Mouse Down";
			   }
			  }
			  // --></script>
			 </head>
			 <body>
			 <form>
			  <input type="button" id="tBtn" value="Press Mouse Button">
			 </form>
			 <div id="result"></div>
			 </body>
			</html>