as the title
function CheckStatus(url){
    $.ajax({
        type: "GET",
        cache: false,
        url: url,
        dataType: "jsonp", //jsonp
        processData: false,
        data: "",
        complete: function (data) {
            if (data.status==200) {
                console.log("");
            } else {
                console.log("");
            }
        }
    });
}it doesn"t seem to work like that.
