如何将变量从jquery中的post函数传递给声明控制器?

时间:2011-02-02 19:47:21

标签: jquery ajax

我想在post函数中添加2个变量。我该怎么做?

    $.post('/Home/AddContent/',  function (response) {
        alert("success");
    }, 'json');

2 个答案:

答案 0 :(得分:1)

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

这是jquery post的用法。采取“数据”选项

答案 1 :(得分:0)

$.post(
    '/Home/AddContent/', //URL
    'variable1=' + uriEncodeComponent(value1),  //Data
    function(jsonObject, t, j)){ //Success
        alert('success');
    }, 
    'json' //Datatype
);