1.json对象的写法
var obj = {}; obj.SystemCode = code; obj.pageIndex = pageIndex;
$.post(url, obj,function (result) {
);
});
传给后台的json数据是
{“SystemCode”:"code","pageIndex":“pageIndex”}
如果传入的见其值为空数据为
{“SystemCode”:null}的形式
//将字符串"null"或null转换为"" function checkNull(temp) { if (temp == null) temp= ""; if (temp.toString().toLowerCase() == "null") temp = ""; return temp; }