$ajax加载数据问题
<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;
}
<%@ 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";
}
}
}