0

我的实际要求是我想检索从我的 aspx 页面返回到 html 页面的值。提前致谢

<script type="text/javascript">



  function getCars() {
      alert("ji");
      $.ajax({
          type: "POST",
          url: "http://localhost:1967/WebSite14/Default.aspx",
          data: "{}",
          contentType: "json",
          dataType: "json",
          success: function (response) {
              var cars = response.emp;
              alert("ji");
              $('#output').empty();
              $.each(cars, function (index, emp) {

                  $('#output').append('<p><strong>' + emp.Expiry + ' ' +
                            emp.Expiry + '</strong><br /> Year: ' +
                            emp.Expiry + '<br />Doors: ' +
                            emp.Expiry + '<br />Colour: ' +
                            emp.Expiry + '<br />Price: £' +
                            emp.Expiry + '</p>');
              });
          },
          failure: function (msg) {
              $('#output').append('hi');
          }
      });
  }

请帮助我,我错了,这是我的 aspx 页面返回的内容,而且我不知道我应该怎么做才能成功:函数(响应)请帮助我



    {
    "emp": [
        {
            "Name": "Apple",
            "Expiry": 1,
            "Price": 3.99,
            "Sizes": [
                "Small",
                "Mediu",
                "Large"
            ]
        },
        {
            "Name": "Apple",
            "Expiry": 1,
            "Price": 3,
            "Sizes": [
                "Small",
                "Mediu",
                "Large"
            ]
        }
    ]
}
4

1 回答 1

0

我继续使用这种格式从链接中获取数据,它有效,感谢你们的支持

if (xmlHttp.readyState==4)
        {
            alert(xmlHttp.status);
            if(xmlHttp.status==200)
            {

            alert("hi");
            var jsondata=eval("("+xmlHttp.responseText+")") //retrieve result as an JavaScript object
            jsonOutput=jsondata.message.result;
            alert(jsonOutput);

            InitializeLeadStorage()

        }
        }
于 2012-07-11T11:45:34.080 回答