json字符串分为标准和非标准
若为标准字符串,可以直接用 JSSON.prase(str)
若为非标准,可以用 eval( " ( " + str+ " ) " ); 转换,注意要在str左右加上圆括号包住
注意 eval 方法可以同时转换标准和非标准