[ajax]
$.ajax({
type: 'POST',
url: url,
data: data,
success: success,
dataType: dataType
});
[get, post]
$.get("test.php");
$.get("test.php", { name: "John", time: "2pm" } );
$.get("test.cgi", { name: "John", time: "2pm" },
function(data){
alert("Data Loaded: " + data);
});
$.get('ajax/test.html', function(data) {
$('.result').html(data);
alert('Load was performed.');
});
var jqxhr = $.get("example.php", function() {
alert("success");
})
.success(function() { alert("second success"); })
.error(function() { alert("error"); })
.complete(function() { alert("complete"); });
Example: Gets the test.php page contents which has been returned in json format (<?php echo json_encode(array("name"=>"John","time"=>"2pm")); ?>).
$.get("test.php", { "func": "getNameAndTime" },
function(data){
alert(data.name); // John
console.log(data.time); // 2pm
}, "json");
'유용한정보' 카테고리의 다른 글
리눅스 PATH 경로 설정하기 (0) | 2014.04.29 |
---|---|
접근성을 해치지 않는 자바스크립트의 사용 (0) | 2014.04.22 |
mysql 테이블 복제 하기 (구조 또는 데이터 모두) (0) | 2014.04.20 |
jquery form - ajaxForm (0) | 2014.04.20 |
grep perl 조합으로 파일내 문자열을 한꺼번에 변경하기 (0) | 2014.04.18 |
JQuery 기본 예제 모음 (0) | 2014.04.18 |
Input 박스에 포커스 되었을때 스타일 변경 (0) | 2014.04.18 |
Input 박스에 사라지는 배경 넣기 (0) | 2014.04.18 |
댓글