1

你好!我有这个问题......我的jsp中有一个for循环,它生成按钮

<div class=button>
     <% for (int i=0; i<2; i++ ) { %>
     //Title button is Title i.
     //Each button send the user at the same url destination.jsp`
</div>

所以在用户中出现[Title 1] [Title 2]当我在destination.jsp中时我怎么知道i 的值?非常感谢!

4

1 回答 1

0

尝试这个

<a href="CardDetailForm.jsp?param='"+i+"'"></a>
于 2013-07-18T11:10:46.940 回答