MVC3使用ajax不执行
发布网友
发布时间:2022-05-31 14:56
我来回答
共2个回答
热心网友
时间:2023-10-17 10:12
function test(obj) {
$.ajax({
type: "POST", //默认是GET
url: "GetList", //Action
cache: false, //不加载缓存
success: function (obj) {//obj为返回的json,如果是泛型可以用each进行循环
alert("123");
},
error: function () {
alert("请求失败");
}
});
}
public JsonResult GetList()
{
User u = new User();
u.userName = "1";
u.password = "11";
return Json(u);
}
这样试试
热心网友
时间:2023-10-17 10:13
data 那个地方直接写json吧
这样写好繁琐,看的
这样写$.post("/home/GetList",{"参数":你的参数},function(data){
alter(123); // 你可以alter Data.userName 可以弹出 1来的
})