第一种:利用JSON的parse方法,即jsonObj=JSON.parse(jsonStr);第二种:jsonObj = eval('(' + jsonStr+ ')');第三种:比较难理解:jsonObj =(new Function("return " + jsonStr))();