ajax返回值
2017-06-03 22:34 sunice 阅读(203) 评论(0) 编辑 收藏 举报前端:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 | <html> <head> <meta name= "viewport" content= "width=device-width" /> <title>Index</title> <script src= "~/Scripts/jquery-1.8.2.js" ></script> <script> $(function () { $( "#btn" ).click(function () { $.ajax({ url: "/Home/Test" , data: {}, dataType: "json" , success: function (data) { for ( var s in data) { $( "#txt" + s).val(data[s]); } } }) }) }) </script> </head> <body> <div> <input type= "text" id= "txtName" /><br /> <input type= "text" id= "txtPwd" /><br /> <button id= "btn" >提交</button> </div> </body> </html> |
后端:
1 2 3 4 5 6 7 8 9 10 | public ActionResult Test() { Student stu = new Student() { Name= "王大" , Pwd= "123456" }; return Json(stu, JsonRequestBehavior.AllowGet); } |
【推荐】编程新体验,更懂你的AI,立即体验豆包MarsCode编程助手
【推荐】凌霞软件回馈社区,博客园 & 1Panel & Halo 联合会员上线
【推荐】抖音旗下AI助手豆包,你的智能百科全书,全免费不限次数
【推荐】轻量又高性能的 SSH 工具 IShell:AI 加持,快人一步