Ajax 예제 및 사용법
출처 : http://nowonbun.tistory.com/76
Ajax 시작하기
참조 : https://developer.mozilla.org/ko/docs/AJAX/Getting_Started
Ajax 채팅 프로그램 작성
예재 http://samples.tistory.com/71
요즘 Ria System이 각광받는 요즘 추세에 Ajax는 정말 많이 사용되는 기술입니다. AJax란 정확하게 이야기 하믄 JavaScript-x + 통신객체(XMLHttpRequest) + 통신데이터(XML) 세가지가 주요 기술요소로써 JavaScrpt-x에서 웹서버에 비동기 통신을 이용하여 데이터를 얻고 화면에 반영하는 방식입니다.
어려운 이론보다는 실제 코딩을 확인하겠습니다.
1 jQuery.ajax({
2 type:"POST",
3 url:".......",
4 data:"parameter,
5 success:function(msg){
6 },
7 error: function(xhr,status,error){
8 }
9 });
2 type:"POST",
3 url:".......",
4 data:"parameter,
5 success:function(msg){
6 },
7 error: function(xhr,status,error){
8 }
9 });
예제
1 <script language='javascript' src='http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js'></script>
2 <script>
3 $(document).ready(function(){
4 jQuery.ajax({
5 type:"GET",
6 url:"test.html",
7 success:function(msg){
8 alert(msg);
9 }, error: function(xhr,status,error){
10 alert(error);
11 }
12 });
13 });
14 </script>
2 <script>
3 $(document).ready(function(){
4 jQuery.ajax({
5 type:"GET",
6 url:"test.html",
7 success:function(msg){
8 alert(msg);
9 }, error: function(xhr,status,error){
10 alert(error);
11 }
12 });
13 });
14 </script>
게시판 목록
프로그램
| 번호 | 제목 | 글쓴이 | 날짜 | 조회 |
|---|---|---|---|---|
| 7830 | 9년 전 | 441 | ||
| 7829 |
|
9년 전 | 625 | |
| 7828 | 10년 전 | 554 | ||
| 7827 | 10년 전 | 449 | ||
| 7826 | 10년 전 | 453 | ||
| 7825 | 10년 전 | 494 | ||
| 7824 | 10년 전 | 456 | ||
| 7823 | 10년 전 | 402 | ||
| 7822 | 10년 전 | 376 | ||
| 7821 | 10년 전 | 323 | ||
| 7820 | 10년 전 | 359 | ||
| 7819 |
|
10년 전 | 756 | |
| 7818 | 10년 전 | 405 | ||
| 7817 | 10년 전 | 540 | ||
| 7816 | 10년 전 | 423 | ||
| 7815 | 10년 전 | 621 | ||
| 7814 | 10년 전 | 450 | ||
| 7813 | 10년 전 | 400 | ||
| 7812 | 10년 전 | 413 | ||
| 7811 | 10년 전 | 404 | ||
| 7810 | 10년 전 | 584 | ||
| 7809 | 10년 전 | 517 | ||
| 7808 | 10년 전 | 393 | ||
| 7807 | 10년 전 | 423 | ||
| 7806 |
프로그래머7
|
10년 전 | 1347 | |
| 7805 | 10년 전 | 1290 | ||
| 7804 |
zahir1312
|
10년 전 | 790 | |
| 7803 |
|
10년 전 | 1386 | |
| 7802 | 10년 전 | 474 | ||
| 7801 | 10년 전 | 871 | ||
| 7800 | 10년 전 | 1092 | ||
| 7799 | 10년 전 | 572 | ||
| 7798 | 10년 전 | 526 | ||
| 7797 | 10년 전 | 529 | ||
| 7796 | 10년 전 | 370 | ||
| 7795 | 10년 전 | 524 | ||
| 7794 | 10년 전 | 572 | ||
| 7793 | 10년 전 | 1069 | ||
| 7792 | 10년 전 | 491 | ||
| 7791 | 10년 전 | 572 | ||
| 7790 | 10년 전 | 521 | ||
| 7789 |
fbastore
|
10년 전 | 1459 | |
| 7788 | 10년 전 | 561 | ||
| 7787 | 10년 전 | 418 | ||
| 7786 | 10년 전 | 611 | ||
| 7785 | 10년 전 | 604 | ||
| 7784 | 10년 전 | 657 | ||
| 7783 | 10년 전 | 466 | ||
| 7782 | 10년 전 | 507 | ||
| 7781 | 10년 전 | 912 | ||
| 7780 | 10년 전 | 833 | ||
| 7779 | 10년 전 | 782 | ||
| 7778 | 10년 전 | 371 | ||
| 7777 | 10년 전 | 477 | ||
| 7776 | 10년 전 | 470 | ||
| 7775 | 10년 전 | 418 | ||
| 7774 | 10년 전 | 637 | ||
| 7773 | 10년 전 | 394 | ||
| 7772 | 10년 전 | 751 | ||
| 7771 | 10년 전 | 404 | ||
| 7770 | 10년 전 | 656 | ||
| 7769 | 10년 전 | 404 | ||
| 7768 | 10년 전 | 626 | ||
| 7767 | 10년 전 | 1187 | ||
| 7766 | 10년 전 | 502 | ||
| 7765 | 10년 전 | 553 | ||
| 7764 |
잘살아보자
|
10년 전 | 412 | |
| 7763 |
|
10년 전 | 1474 | |
| 7762 |
Tosea
|
10년 전 | 1073 | |
| 7761 | 10년 전 | 666 | ||
| 7760 |
잘살아보자
|
10년 전 | 702 | |
| 7759 |
잘살아보자
|
10년 전 | 534 | |
| 7758 |
잘살아보자
|
10년 전 | 611 | |
| 7757 | 10년 전 | 1252 | ||
| 7756 |
ITBANK
|
10년 전 | 1268 | |
| 7755 | 10년 전 | 1936 | ||
| 7754 | 10년 전 | 1071 | ||
| 7753 | 10년 전 | 897 | ||
| 7752 | 10년 전 | 1409 | ||
| 7751 |
잘살아보자
|
10년 전 | 551 | |
| 7750 |
잘살아보자
|
10년 전 | 490 | |
| 7749 |
잘살아보자
|
10년 전 | 502 | |
| 7748 |
잘살아보자
|
10년 전 | 517 | |
| 7747 |
잘살아보자
|
10년 전 | 604 | |
| 7746 |
잘살아보자
|
10년 전 | 689 | |
| 7745 |
잘살아보자
|
10년 전 | 929 | |
| 7744 |
잘살아보자
|
10년 전 | 429 | |
| 7743 | 10년 전 | 959 | ||
| 7742 |
starbros
|
10년 전 | 852 | |
| 7741 |
잘살아보자
|
10년 전 | 684 | |
| 7740 |
잘살아보자
|
10년 전 | 558 | |
| 7739 |
잘살아보자
|
10년 전 | 474 | |
| 7738 |
잘살아보자
|
10년 전 | 550 | |
| 7737 |
잘살아보자
|
10년 전 | 521 | |
| 7736 |
잘살아보자
|
10년 전 | 539 | |
| 7735 |
잘살아보자
|
10년 전 | 865 | |
| 7734 |
잘살아보자
|
10년 전 | 438 | |
| 7733 |
잘살아보자
|
10년 전 | 553 | |
| 7732 |
잘살아보자
|
10년 전 | 712 | |
| 7731 |
잘살아보자
|
10년 전 | 630 |
댓글 작성
댓글을 작성하시려면 로그인이 필요합니다.
로그인하기