首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > JAVA > Java Web开发 >

js 遍历jstl数组解决方法

2013-10-21 
js 遍历jstl数组在js中可以alert(${channel.templates[0].id})alert(${channel.templates[1].id})为什么

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>
[解决办法]
用的乱了。不是一种循环。/变量都不一样

热点排行