ajax post 방식에서 function 이 필요할때 두가지 방법
336x280(권장), 300x250(권장), 250x250, 200x200 크기의 광고 코드만 넣을 수 있습니다.
ajax post 방식에서 function 이 필요할때 두가지 방법
방법 1.
$.post("@Url.Action("", "")"
, 파라미터
, function () {
//동작할 내용 넣음 });
방법 2.
$.ajax({ url: "@Url.Action("", "")", type: "POST", dataType: 'json', data: datavalue, contentType: "application/json; charset=utf-8", success: function (result) { //여기에 동작할 내용 넣음 } });
'Web > javascript / jQuery' 카테고리의 다른 글
[jQuery] 문자열 배열에서 중복되는 값들 없애주는 방법 (8) | 2015.04.28 |
---|---|
[jquery] radio 체크여부 (8) | 2015.04.28 |
jQuery 의 Combobox 의 변수 넘기기 (8) | 2015.04.28 |
[jquery] 날짜 계산 (10) | 2015.04.28 |
[jquery] HTML 새창으로 열기 (780) | 2015.04.28 |