jquery - ajax

javascript, jquery 2014. 10. 7. 00:29
$.ajax({
	type: "POST" / "GET",
	url: "test.php",
	dataType: "html" / "json" / "xml" / "script",
	data: { name:value }
	timeout: 30000,
	cache: false / true,
	success: function(result) {
		$("#result").html(result);
	}
});

'javascript, jquery' 카테고리의 다른 글

이미지 변경하기  (0) 2014.10.10
ajax - ajaxStart, ajaxStop  (0) 2014.10.08
텍스트 롤링(rolling)  (0) 2014.10.03
jquery plugin site  (0) 2014.10.03
스크롤 이동 - scrollTo  (0) 2014.10.03
블로그 이미지

디츠

“말은 쉽지, 코드를 보여줘.” “Talk is cheap. Show me the code.” – 리누스 토르발스(Linus Torvalds)

,