我正在使用 MVC 3。在选择下拉列表时,我有一个返回部分视图的 jquery ajax 方法。
$.ajax({
url: '/Date/GetNextData',
type: 'GET',
async: false,
data: { ID: dataID },
success: function (result) {
$('followup').html(result);
}
});
有没有其他方法可以在不使用 ajax 的情况下做到这一点?
提前致谢