몇몇 js

1725 단어 js
1. json 대상 의 쓰기
var obj = {};
    obj.SystemCode = code;
    obj.pageIndex = pageIndex;
$.post(url, obj,function (result) {
                );
        });

배경 에 전 달 된 제 이 슨 데 이 터 는?
{“SystemCode”:"code","pageIndex":“pageIndex”}

들 어 오 는 값 이 빈 데이터 라면
{“SystemCode”:null}   
//    "null" null   ""
function checkNull(temp) {
    if (temp == null)
        temp= "";
    if (temp.toString().toLowerCase() == "null")
        temp = "";
    return temp;
}

좋은 웹페이지 즐겨찾기