ajax与json 获取数据并在前台使用简单实例
更新时间:2017年01月19日 14:58:47 投稿:lqh
这篇文章主要介绍了ajax与json 获取数据并在前台使用简单实例的相关资料,需要的朋友可以参考下
用ajax获取后台数据,返回json数据,怎么在前台使用呢?
后台
if (dataType == "SearchCustomer") { int ID; if (Int32.TryParse(CustomerID, out ID)) { string s = GridComputer.GridCustomer.getCustomer(1, 1, ID); if (s == null) { context.Response.ContentType = "text/plain"; context.Response.Write("[{\"name\":无用户,\"id\":\"0\",\"company\":\"无用户\"}]"); } else { context.Response.Write(s); } } }
前台
$(document).ready(function () { $("#Button3").click( function (SucCallback) { $.ajax( { type: "get", url: 'GridDatas.ashx', //后台处理程序 dataType: 'json', //接受数据格式 data: 'DataType=SearchCustomer&CustomerID=' + document.getElementById("Text3").value, //要传递的数据 success:SucCallback, error: function () { alert("error"); } }); }) })
参考代码
grid.getCustomer(1,2,function (data) { var list = '<p>' + tree_GridInfo._name + '的用户有</p><br>'; list += '<table id="customers"><tr><th>姓名</th><th>电话</th></tr> '; $.each(data, function (i, n) { list += '<tr onclick="showUser(' + 1 + ')"><td>'; list += n.name + '</td>' + '<td>' + n.company; list += '</td></tr>'; }); $("#SearchResult").html(list)
看你的json数据是列表还是单个了,就一条就无需中括号了
context.Response.Write("{\"name\":无用户,\"id\":\"0\",\"company\":\"无用户\"}"); $(document).ready(function () { $("#Button3").click( function (SucCallback) { $.ajax( { type: "get", url: 'GridDatas.ashx', //后台处理程序 dataType: 'json', //接受数据格式 data: 'DataType=SearchCustomer&CustomerID=' + document.getElementById("Text3").value, //要传递的数据 function (dataJson) { alert(dataJson.Name); alert(dataJson.Id); }, error: function () { alert("error"); } }); }) })
感谢阅读,希望能帮助到大家,谢谢大家对本站的支持!
相关文章
jquery实现隐藏与显示动画效果/输入框字符动态递减/导航按钮切换
jquery实现隐藏显示层动画效果、仿新浪字符动态输入、tab效果等等,以下为所有代码,感兴趣的朋友可以练练手哈,希望对大家学习有所帮助2013-07-07轻松学习jQuery插件EasyUI EasyUI创建树形网络(1)
这篇文章主要帮助大家轻松学习jQuery插件EasyUI,并且教大家如何利用EasyUI创建树形网络,感兴趣的小伙伴们可以参考一下2015-11-11jQuery插件HighCharts实现气泡图效果示例【附demo源码】
这篇文章主要介绍了jQuery插件HighCharts实现气泡图效果,结合完整实例形式分析了jQuery插件HighCharts绘制气泡图的实现技巧,并附带demo源码供读者下载参考,需要的朋友可以参考下2017-03-03
最新评论