<BODY onLoad="alert('어서오세요...');" onUnLoad="alert('벌써가시게???');">
<input type="button" value="클릭이벤트"
onclick="alert('클릭');" onblur="alert('흐려짐');"
onfocus="alert('포커스');">
<TABLE border="1" width="90%" align="center">
<TR>
<TD onmouseover="this.style.backgroundColor='#00FFFF';" onmouseout="this.style.backgroundColor='';">1</TD>
<TD onClick="this.style.backgroundColor='#33CCFF';"
onDblClick="this.style.backgroundColor='#3366FF';">2</TD>
</TR>
<TR>
<TD onMouseMove="this.style.backgroundColor='#00FFCC';"
onMouseDown="this.style.backgroundColor='';"
onMouseUp="this.style.backgroundColor='#FFCCFF';"
>3</TD>
<TD>4</TD>
</TR>
</TABLE>
</BODY>