当前位置: 代码迷 >> Java Web开发 >> js 遍历jstl数组解决方法
  详细解决方案

js 遍历jstl数组解决方法

热度:4404   发布时间:2016-04-11 00:03:30.0
js 遍历jstl数组
在js中可以
alert(${channel.templates[0].id});
alert(${channel.templates[1].id});
为什么不能对于变量i却不能执行
for(var i=0;i<lenght;i++){
alert(${channel.templates[i].id});
}
js jstl 遍历

------解决方案--------------------
不能这样可以用struts标签
------解决方案--------------------
你要遍历请使用jstl标签
<script>
<c:forEach items="${channel.templates}" var="template">
  alert("${template.id}");
</c:forEach>
</script>
------解决方案--------------------
用的乱了。不是一种循环。/变量都不一样
  相关解决方案