首页 > Windows开发 > 详细

Aspx Ajax 调用 C#函数处理数据

时间:2016-09-09 10:08:26      阅读:315      评论:0      收藏:0      [点我收藏+]

jquery ajax 调用后台函数

 1         var res;
 2         $.ajax({
 3             type: "POST",
 4             url: "fast_index_overview.aspx/GetOverViewZongLunContent",
 5             data: "{city:‘" + regionCityName + "‘,time:‘" + time + "‘}",
 6             contentType: "application/json",
 7             dataType: "json",
 8             async: false,
 9             success: function (result) {
10                 try {
11                     res = eval(‘(‘ + result.d + ‘)‘)[0];
12                  
13                 } catch (e) {
14 
15                 } 
16             },
17             error: function(err) {
18                 res = "错误:" + err.d;
19             }
20         });
21 
22         console.log("获取数据:" + res);

 

Aspx Ajax 调用 C#函数处理数据

原文:http://www.cnblogs.com/googlegis/p/5855245.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!