반응형
http://mytory.co.kr/archives/223
http://jquery.malsup.com/form/
<script type="text/javascript" src="jquery-1.3.2.js"></script>
<script type="text/javascript" src="jquery.form.js"></script>
<script type="text/javascript">
// wait for the DOM to be loaded
$(document).ready(function() {
// bind 'myForm' and provide a simple callback function
$('#myForm').ajaxForm(function() {
alert("Thank you for your comment!");
});
});
</script>
< form id="myForm" action="comment.php" method="post">
Name: <input type="text" name="name" />
Comment: <textarea name="comment"></textarea>
<input type="submit" value="Submit Comment" />
< /form>
$(function(){
$('#myForm').ajaxForm();
});
이렇게 쓰면 action값과 method를 form에 지정된 대로 사용하게 된다. submit 버튼 누르면 ajax 처리가 된다.
정말 짱이다 ㅡㅡ;;
http://jquery.malsup.com/form/
<script type="text/javascript" src="jquery-1.3.2.js"></script>
<script type="text/javascript" src="jquery.form.js"></script>
<script type="text/javascript">
// wait for the DOM to be loaded
$(document).ready(function() {
// bind 'myForm' and provide a simple callback function
$('#myForm').ajaxForm(function() {
alert("Thank you for your comment!");
});
});
</script>
< form id="myForm" action="comment.php" method="post">
Name: <input type="text" name="name" />
Comment: <textarea name="comment"></textarea>
<input type="submit" value="Submit Comment" />
< /form>
$(function(){
$('#myForm').ajaxForm();
});
이렇게 쓰면 action값과 method를 form에 지정된 대로 사용하게 된다. submit 버튼 누르면 ajax 처리가 된다.
정말 짱이다 ㅡㅡ;;
반응형
'유용한정보' 카테고리의 다른 글
jquery timer 일정 시간 마다 반복 (0) | 2014.04.29 |
---|---|
리눅스 PATH 경로 설정하기 (0) | 2014.04.29 |
접근성을 해치지 않는 자바스크립트의 사용 (0) | 2014.04.22 |
mysql 테이블 복제 하기 (구조 또는 데이터 모두) (0) | 2014.04.20 |
jquery ajax, $.get(), $.post() 사용방법 (0) | 2014.04.20 |
grep perl 조합으로 파일내 문자열을 한꺼번에 변경하기 (0) | 2014.04.18 |
JQuery 기본 예제 모음 (0) | 2014.04.18 |
Input 박스에 포커스 되었을때 스타일 변경 (0) | 2014.04.18 |
댓글