글 수 16
form의 input type image 에도 되구요. 일반 이미지에도 적용됩니다.
1. 폼에 적용할 때.
2. 일반 이미지에 적용할 때. <input
type="image" src="./btn.gif" onmouseover="this.src="./btn_over.gif"
onmousedown="this.src="./btn_down.gif" onmouseout="this.src="./btn.gif"
/>
<img src="./btn.gif"
onmouseover="this.src="./btn_over.gif"
onmousedown="this.src="./btn_down.gif"
onmouseout="this.src="./btn.gif">

보짱