在jsp中的for循环中创建表的行

发布于 2024-11-01 16:52:51 字数 721 浏览 0 评论 0原文

在 jsp 中,我有一个表,我在这样的循环中创建其行,

<table>
<tr>
<th>Item</th>
<th>Quantity</th>
<th>Price</th>
<th>Total</th>
<th>Actions</th>
</tr>
<tr>
<%
String[] cartItems = (String[]) request.getSession().getAttribute("cartList");
for (int i = 0; i < cartItems.length; i++) {
%>
   <td>
      <input type="text" id="itemPrice" maxlength="5" size="5" style="border:none;" value="$<%= cartItem[3]%>" />
   </td>
<% } %>
</tr>
</table>

假设添加 5 个这样的行,每行将具有 id=itemPrice,但我希望这些行具有:

id=itemPrice1
id=itemPrice2.. and so on..

我该怎么做?请帮忙..

In a jsp I have a table whose rows I am creating in a loop like this,

<table>
<tr>
<th>Item</th>
<th>Quantity</th>
<th>Price</th>
<th>Total</th>
<th>Actions</th>
</tr>
<tr>
<%
String[] cartItems = (String[]) request.getSession().getAttribute("cartList");
for (int i = 0; i < cartItems.length; i++) {
%>
   <td>
      <input type="text" id="itemPrice" maxlength="5" size="5" style="border:none;" value="
lt;%= cartItem[3]%>" />
   </td>
<% } %>
</tr>
</table>

Suppose 5 such rows are added, every row will have the id=itemPrice, but I want the rows to have:

id=itemPrice1
id=itemPrice2.. and so on..

How do I do this? Please help..

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

蝶…霜飞 2024-11-08 16:52:51
<input type="text" id="itemPrice<%=i%>" maxlength="5" size="5" style="border:none;" value="
lt;%= cartItem[3]%>" />

注意“id”发生了什么。它只是 for 语句中的计数器。

<input type="text" id="itemPrice<%=i%>" maxlength="5" size="5" style="border:none;" value="
lt;%= cartItem[3]%>" />

Note what happened with the "id". It's just the counter in the for sentence.

意中人 2024-11-08 16:52:51

我想说这应该可行(未经测试):

id="itemPrice" 替换为 id="itemPrice${i+1}"

这样,您就可以在 html 中插入 i 的值。

如果这不起作用,请尝试 id="itemPrice<%=i+1%>"

I'd say this should work (not tested):

Replace id="itemPrice" with id="itemPrice${i+1}"

This way, you're inserting value of i inside of your html.

If this doesn't work, try id="itemPrice<%=i+1%>".

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文