<script type="text/javascript">
        $(document).ready(function checkAjax() {
            $.ajax({
                type: "post",
                url: "HighCharts.aspx/DataBank",                contentType: "application/json; charset=utf-8",                dataType: "json",
                success: function (data) {
                    data = data[1].price;
                    alert(data);
                },
                error: function (err) {
                    alert(err + "调用后台程序出现错误,请尝试刷新!");
                }
            }
        )
        })</script>
后台数据:
   
public static string DataBank()
        {
           // work=new WorkOrderMachineOnlyOnce();
           // iData=(IDataChannels)work;
            string ajaxTest = "hello";
            string json = "[";
            json += "{\"linespeed\":\"" + ajaxTest+ "\"},{\"price\":\"";
            json += ajaxTest + "\"}]";
            return json;
        }
页面打开提示错误时price未定义,各位大大,请教下,这是为啥呢。

解决方案 »

  1.   

    1、[WebMethod]
    2、data.d :返回的json在这里
      

  2.   

    var r=data.d;
    然后 r[1].price
      

  3.   

    测试了下,这样也不行,显示还是undefined,另外我有加[WebMethod]标记的。
      

  4.   

    得到的数据该为   eval("var sss = " + data.d);
                       alert(sss[1]["price"]);
      

  5.   

    前台代码:
    <%@ Page Language="C#" AutoEventWireup="true" CodeBehind="WebForm1.aspx.cs" Inherits="WebApplication1.WebForm1" %><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head runat="server">
        <title></title>
        <script src="Scripts/jquery-1.4.1.min.js" type="text/javascript"></script>
        <script type="text/javascript">
            function CallCs() {
                $.ajax({
                    //要用post方式      
                    type: "Post",
                    //方法所在页面和方法名      
                    url: "WebForm1.aspx/GetJson",
                    contentType: "application/json; charset=utf-8",
                    dataType: "json",
                    success: function (data) {
                        //返回的数据用data.d获取内容      
                        alert(data.d);
                    },
                    error: function (err) {
                        alert(err);
                    }
                });
            }
        </script>
    </head>
    <body>
        <form id="form1" runat="server">
        <div>
            <input type="button" onclick="CallCs()" value="test" />
        </div>
        </form>
    </body>
    </html>
    后台代码:
    using System;
    using System.Collections.Generic;
    using System.Linq;
    using System.Web;
    using System.Web.UI;
    using System.Web.UI.WebControls;
    using System.Web.Services;namespace WebApplication1
    {
        public partial class WebForm1 : System.Web.UI.Page
        {
            protected void Page_Load(object sender, EventArgs e)
            {        }        [WebMethod]
            public static string GetJson()
            {
                return "Hello world";
            }
        }
    }
    如果是json格式的字符串
    前台要这样处理:
    json = eval("("+jsonstr+")");
      

  6.   

    data.d 后面这个才是你要的东西微软对Webmethod的返回值做了一个封装,外面用d包了一层