码迷,mamicode.com
首页 > Windows程序 > 详细

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

时间:2016-09-09 10:08:36      阅读:232      评论: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
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!