2011-02-02 7 views

답변

1
jQuery.post( 
    url, 
    [ data ], 
    [ success(data, textStatus, XMLHttpRequest) ], 
    [ dataType ] 
) 

이 JQuery와 post의 사용이다. "데이터"옵션

0

$.post(
    '/Home/AddContent/', //URL 
    'variable1=' + uriEncodeComponent(value1), //Data 
    function(jsonObject, t, j)){ //Success 
     alert('success'); 
    }, 
    'json' //Datatype 
); 
시도를 취할
관련 문제