js 遍历EL表达式 list对象

无法直接通过"${topicList}"获取对象,需要通过获取list里的对象:

var topicListArry = new Array(); 
    var="t"> 
        var topicObj = {};
        topicObj.id = '${t.id}';
        topicObj.title = '${t.title}';
        topicListArry.push(topicObj);
     

 JS获取session中的参数值

var returnPage = "<%=session.getAttribute("returnPage")%>";

 

转载于:https://www.cnblogs.com/lijianda/p/10224270.html

你可能感兴趣的:(js 遍历EL表达式 list对象)