我想在post函数中添加2个变量。我该怎么做?
$.post('/Home/AddContent/', function (response) {
alert("success");
}, 'json');
答案 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
);