本人用的是jquery 做异步
function SelectPOST(data){
$.getJSON(
"ajax/addworklog.aspx",//产生JSON数据的服务端页面
data,//向服务器发出的查询字符串(此参数可选)
//对返回的JSON数据进行处理,
function(json){
alert(json);
})}
因为代码太小我就只贴一部分
上面是一个通过AJAX获取JSON的方法
我的addworklog.aspx里的部分代码如下:
//处理JSON数据格式
public string json(string json)
{
string []index1=Getindex(json,"\'").Split(',');
string []index2=Getindex(json,"\\").Split(',');
for(int i=0;i
{
json.Insert(int.Parse(index1[i]), "\\");
}
for(int j=0;j
{
json.Insert(int.Parse(index2[j]), "\\");
}
//return json.Replace("\r", "").Replace("\n", "");
return json;
}
public string Getindex(string a,string b)
{
string cccc="";
int i=0;
int index=a.IndexOf(b);
while(index>=0)
{
cccc+=index+",";
i++;
index=a.IndexOf(b,index+1,a.Length-1-index);
}
return cccc;
}
这两个方法是用来处理JSON数据
现在问题就出在
//return json.Replace("\r", "").Replace("\n", "");return json;这两行,如果我把第二行注释用第一行,一切正常,但是如果我把第一行注释,用第二行,那个alert(json);不起任何做用,我想一定是那个$.getJSON对AJAX返回数据的格式有要求
想请各位高手帮助,
本人QQ75618538