Jquery 1.10.2无法在IE10中工作 - JSON

时间:2013-09-26 15:04:23

标签: javascript jquery

解析json数据时我遇到了问题。 下面是抛出错误的函数

parseJSON: function( data ) {
    //Attempt to parse using the native JSON parser first
    if (window.JSON && window.JSON.parse) {
        return window.JSON.parse( data ); //We are getting error from this line due to data is undefined
    }
    if (data === null) {
        return data;
    }
    if ( typeof data === "string" ) {
        data = jQuery.trim( data );
    if ( data ) {
        if ( rvalidchars.test( data.replace( rvalidescape, "@" )
            .replace( rvalidtokens, "]" )
            .replace( rvalidbraces, "")) ) {
                return ( new Function( "return " + data ) )();
            }
        }
    }
    jQuery.error( "Invalid JSON: " + data );
}

先谢谢

1 个答案:

答案 0 :(得分:2)

您的JSON数据可能有误。参见

http://jsonformatter.curiousconcept.com/ 

验证它。