我正在使用 jQuery $.post() 方法来调用控制器中的方法,但是在调用此函数时它没有命中该方法。任何人都知道如何使用 jQuery $.post() 方法吗?
function OpenDialog(StateCode) {
$.post("~/Home/LoadCityViewModel", {
stateCode: StateCode },
function () {
$("#dialog-modal").dialog("open");
});
return false;
}
private ListingsViewModel LoadCityViewModel(string stateCode) { return null; }