js取el中的map值及js replaceAll实现

阅读更多
<%

Map map = new HashMap();
map.put("20",0);
map.put("21",1);
request.setAttribute("map",map);

%>

js中不能直接如下取值
var key = "21";
alert("${map[" + key + "]}");//想直接实现这种取值效果,不行



下面通过转成json来实现

你可能感兴趣的:(js)