以下应完成此工作:
var scope = 'Test';var scopeId = [1, 2, 3];$.ajax({ url: '@Url.Action("Refresh", "Calendar")', type: 'POST', data: { scope: scope, scopeId: scopeId }, traditional: true, success: function(result) { // ... }});如果您使用的是ASP.NET MVC 3,则还可以将请求作为JSON对象发送:
$.ajax({ url: '@Url.Action("Refresh", "Calendar")', type: 'POST', contentType: 'application/json; charset=utf-8', data: JSON.stringify({ scope: scope, scopeId: scopeId }), success: function(result) { // ... }});


