JS中怎么接收Controller传来的String

我在后台Controller中写的:

        String newString=getJson(expInfos, 10);
        model.addAttribute("expInfos",newString);
        return "modules/expertinfo/expInfoInit";

在javascript中怎么能把传过来的这个字符串取出来?
我写到这卡住了,代码:

$(document).ready(function(){
        var jlist=${expInfos};
        //请问怎么能输出jlist中的值?
        //例如alert(jlist.list[0])再后面应该怎么写才能取出下标为0的里面其中的属性啊?
});

jlist.[0].xxxx,直接写属性的名字

var json=JSON.parse(jlist)转成JSON对象,取json.属性值 就可以了

同意楼上,用JSON.parse()