用ajax就可以啊,如:
$.ajax({
url: "/Common/GetOptionRole",//Common是控制器,注意控制器不要有Controll后缀,GetOptionRole是控制器的方法
type: "GET",
data: {name:'zz'},//GetOptionRole方法的参数
async: false,
dataType: 'json',
contentType: 'application/json',
success: function(result){
}
});