0

这是我的jsp代码

<%
String amount = properties.get("./amount","");
String amount1 = properties.get("./amount1","");
for(i=0;i<7;i++){
%>
<div class="className-<%=i%>">
  <div class= first<%i%>>
   <%=amount%>
  </div>
  <div class= second<%i%>>
  <%=amount1%>
</div>
</div>
<%}
%>

如何在 jquery 中获取 amount 和 amount1 的值?

4

3 回答 3

0

如果我清楚地理解您的问题,您可以尝试将数量值分配给隐藏的输入,并且可以在 jquery 中轻松获得。

<input type = "hidden" id = "amountId" value = "<%=amount%>">

是你需要让我知道。

于 2013-11-06T12:29:54.260 回答
0

试试看 :

<script>
var amount = <%=amount%>;
</script>
于 2013-11-06T07:45:31.523 回答
0

例如:

for(i=0;i<7;i++){var amount = $('.first'+i).text(); var amount1 = $('.second'+i).text();}

顺便说一句,您是否错过了“<%i%>”中的“=”?

于 2013-11-06T08:10:16.083 回答