submit 하기 전 이벤트를 처리하는 2가지 방법
Language/JAVASCRIPT 2010. 5. 14. 16:10* 폼의 값을 submit 하기 전 이벤트를 처리하는 2가지 방법
1. input 태그에서 처리
<form name='cform' method='POST' action='process.php'>
<input type="image" src=" " width="50" height="22" onClick="return insert();">
<form name='cform' method='POST' action='process.php'>
<input type="image" src=" " width="50" height="22" onClick="return insert();">
or
<form name='cform' method='POST' action='process.php'>
<input type="image" src=" " width="50" height="22" onClick="insert(); return false;">
2. from 태그에서 처리
<form name='cform' method='POST' action='process.php' onsubmit="return insert();">
<input type="image" src=" " width="50" height="22">
<input type="image" src=" " width="50" height="22" onClick="insert(); return false;">
2. from 태그에서 처리
<form name='cform' method='POST' action='process.php' onsubmit="return insert();">
<input type="image" src=" " width="50" height="22">
'Language > JAVASCRIPT' 카테고리의 다른 글
풍선도움말 div display (0) | 2010.05.19 |
---|---|
쓸만한 javascript filter 와 속성 (0) | 2010.05.19 |
onClick 이벤트에 return 문에 사용 및 차이점 (0) | 2010.05.14 |
with (0) | 2010.05.14 |
document.open(), document.close() 메소드 (0) | 2010.05.10 |