javascript 把字符串转换为对象时间:2021-10-05 07:22:57function strToJson(str) { var json = (new Function("return " + str))(); return json;}