Fogeaters, Light The World.

13

2017-Sep

[jQuery] 페이지 부분 새로고침

작성자: title: MoonBlonix IP ADRESS: *.64.228.3 조회 수: 1126

출처:: http://devstar21.blogspot.kr/2015/01/jquery.html


Case 1

<!DOCTYPE html>
<html>
<head>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.2/jquery.min.js"></script>
<script>
$(document).ready(function(){
    $("button").click(function(){
        $("#div1").load("demo_test.txt");
    });
});
</script>
</head>
<body>

<div id="div1">
    <h2>Let jQuery AJAX Change This Text</h2>
</div>

<button>Get External Content</button>

</body>
</html>

Case 2 
An easy, but not good way for performance.

<!DOCTYPE html>
<html>
<head>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.2/jquery.min.js"></script>
<script>
$(document).ready(function(){
    $("button").click(function(){
        $("#div1").load(window.location.href+" #div1 h2");
    });
});
</script>
</head>
<body>

<div id="div1">
    <h2>Let jQuery AJAX Change This Text</h2>
</div>

<button>Get External Content</button>

</body>
</html>
profile
profile

title: MoonBlonix

2017.09.13 19:52
*.64.228.3

아래와 같은 방식으로 인터벌 설정한 새로고침도 가능하다.


<script>
function autoRefresh_sample_div()
{
var currentLocation = window.location;
$("#sample").fadeOut('slow').load(currentLocation + ' #sample').fadeIn("slow");
}
setInterval('autoRefresh_sample_div()', 30000); //30초 후 새로고침
</script>
List of Articles
번호 제목 글쓴이 날짜 조회 수
공지 [Web] 클라우드 IDE + 2 title: MoonBlonix 2017-06-25 15124
112 [jQuery] Ajax 옵션 설명 title: MoonBlonix 2017-09-15 1441
» [jQuery] 페이지 부분 새로고침 + 1 title: MoonBlonix 2017-09-13 1126
110 정규표현식 분석 + 1 title: MoonBlonix 2017-09-12 1088
109 [php/mysql] 모든 uft-8 한글 인코딩 문제 title: MoonBlonix 2017-09-12 1497
108 [php] AES / mcrypt 양방향 대칭키 암호화/복호화 + 3 title: MoonBlonix 2017-08-28 1239
107 [php/jQuery/Ajax] 파일 업로드 구현 title: MoonBlonix 2017-08-28 1462
106 [jQuery] ajax 사용 기초 title: MoonBlonix 2017-08-19 1461
105 [php] 서버 용량 구하기 title: MoonBlonix 2017-08-15 1353
104 [jQuery] 레이어 팝업 title: MoonBlonix 2017-08-15 1489
103 [php/jQuery] 선택된 다수의 체크박스 값 넘기기 / 체크박스 제어 + 2 title: MoonBlonix 2017-08-15 1475
102 [mysql] 저장 프로시저 / 저장 함수 / 트리거 title: MoonBlonix 2017-08-15 1511
101 [mysql] 저장엔진 title: MoonBlonix 2017-08-15 1472
100 [mssql / mysql] sql 트랜잭션(Transaction) + 1 title: MoonBlonix 2017-08-14 1507
99 [mysql] mysqli_fetch_row() mysqli_fetch_assoc() mysqli_fetch_array() 차이 title: MoonBlonix 2017-08-08 1482
98 [javascript/jQuery] Ajax의 흐름과 예제 title: MoonBlonix 2017-08-05 1539
97 [web] html 게시글 에디터 title: MoonBlonix 2017-08-05 1456
96 [mysql] JOIN 쿼리 사용하기 title: MoonBlonix 2017-08-05 1458
95 [mysql] 인덱스 (Index) 사용 방법 및 설명 + 2 title: MoonBlonix 2017-08-05 1716
94 [mysql] TEXT 타입, INT 타입 title: MoonBlonix 2017-08-05 1516
93 [mysql] 성능 향상 전략 + 4 title: MoonBlonix 2017-08-05 1467