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>
게시판 목록
프로그램
| 번호 | 제목 | 글쓴이 | 날짜 | 조회 |
|---|---|---|---|---|
| 7930 | 9년 전 | 398 | ||
| 7929 | 9년 전 | 317 | ||
| 7928 | 9년 전 | 407 | ||
| 7927 | 9년 전 | 327 | ||
| 7926 | 9년 전 | 657 | ||
| 7925 | 9년 전 | 341 | ||
| 7924 | 9년 전 | 329 | ||
| 7923 | 9년 전 | 334 | ||
| 7922 | 9년 전 | 369 | ||
| 7921 | 9년 전 | 394 | ||
| 7920 | 9년 전 | 314 | ||
| 7919 | 9년 전 | 330 | ||
| 7918 | 9년 전 | 486 | ||
| 7917 | 9년 전 | 323 | ||
| 7916 | 9년 전 | 398 | ||
| 7915 | 9년 전 | 398 | ||
| 7914 | 9년 전 | 405 | ||
| 7913 | 9년 전 | 560 | ||
| 7912 | 9년 전 | 408 | ||
| 7911 | 9년 전 | 356 | ||
| 7910 | 9년 전 | 399 | ||
| 7909 | 9년 전 | 498 | ||
| 7908 | 9년 전 | 412 | ||
| 7907 | 9년 전 | 359 | ||
| 7906 | 9년 전 | 378 | ||
| 7905 | 9년 전 | 356 | ||
| 7904 | 9년 전 | 344 | ||
| 7903 | 9년 전 | 341 | ||
| 7902 | 9년 전 | 549 | ||
| 7901 |
|
9년 전 | 726 | |
| 7900 | 9년 전 | 571 | ||
| 7899 | 9년 전 | 368 | ||
| 7898 | 9년 전 | 378 | ||
| 7897 | 9년 전 | 330 | ||
| 7896 | 9년 전 | 351 | ||
| 7895 | 9년 전 | 459 | ||
| 7894 | 9년 전 | 378 | ||
| 7893 | 9년 전 | 323 | ||
| 7892 | 9년 전 | 372 | ||
| 7891 | 9년 전 | 753 | ||
| 7890 | 9년 전 | 1188 | ||
| 7889 | 9년 전 | 741 | ||
| 7888 |
limsy1987
|
9년 전 | 541 | |
| 7887 | 9년 전 | 535 | ||
| 7886 | 9년 전 | 422 | ||
| 7885 | 9년 전 | 395 | ||
| 7884 | 9년 전 | 398 | ||
| 7883 | 9년 전 | 393 | ||
| 7882 | 9년 전 | 436 | ||
| 7881 | 9년 전 | 428 | ||
| 7880 | 9년 전 | 547 | ||
| 7879 | 9년 전 | 449 | ||
| 7878 | 9년 전 | 1206 | ||
| 7877 | 9년 전 | 740 | ||
| 7876 | 9년 전 | 471 | ||
| 7875 | 9년 전 | 549 | ||
| 7874 |
|
9년 전 | 798 | |
| 7873 | 9년 전 | 509 | ||
| 7872 | 9년 전 | 664 | ||
| 7871 | 9년 전 | 473 | ||
| 7870 | 9년 전 | 597 | ||
| 7869 | 9년 전 | 423 | ||
| 7868 | 9년 전 | 430 | ||
| 7867 | 9년 전 | 410 | ||
| 7866 | 9년 전 | 477 | ||
| 7865 | 9년 전 | 441 | ||
| 7864 | 9년 전 | 503 | ||
| 7863 | 9년 전 | 500 | ||
| 7862 | 9년 전 | 459 | ||
| 7861 | 9년 전 | 620 | ||
| 7860 | 9년 전 | 609 | ||
| 7859 | 9년 전 | 400 | ||
| 7858 | 9년 전 | 693 | ||
| 7857 | 9년 전 | 1062 | ||
| 7856 | 9년 전 | 509 | ||
| 7855 | 9년 전 | 735 | ||
| 7854 | 9년 전 | 722 | ||
| 7853 | 9년 전 | 571 | ||
| 7852 | 9년 전 | 500 | ||
| 7851 | 9년 전 | 493 | ||
| 7850 | 9년 전 | 577 | ||
| 7849 | 9년 전 | 352 | ||
| 7848 | 9년 전 | 402 | ||
| 7847 | 9년 전 | 639 | ||
| 7846 | 9년 전 | 446 | ||
| 7845 | 9년 전 | 405 | ||
| 7844 | 9년 전 | 386 | ||
| 7843 | 9년 전 | 403 | ||
| 7842 | 9년 전 | 390 | ||
| 7841 | 9년 전 | 374 | ||
| 7840 | 9년 전 | 390 | ||
| 7839 | 9년 전 | 425 | ||
| 7838 | 9년 전 | 507 | ||
| 7837 | 9년 전 | 346 | ||
| 7836 | 9년 전 | 392 | ||
| 7835 | 9년 전 | 463 | ||
| 7834 |
|
9년 전 | 1184 | |
| 7833 | 9년 전 | 413 | ||
| 7832 | 9년 전 | 405 | ||
| 7831 | 9년 전 | 548 |
댓글 작성
댓글을 작성하시려면 로그인이 필요합니다.
로그인하기