gpt4 book ai didi

java - 如何使用for循环从jsp获取jquery中的值?

转载 作者:行者123 更新时间:2023-12-01 13:53:08 24 4
gpt4 key购买 nike

在我的 Jsp 中,值和类在循环中动态生成。

<div>
<c:forEach var="interestTab" varStatus="loop" items="${interestParam}">
<c:set var="interestFields" value="${fn:split(interestTab, '|')}" />
<c:set var="maxAmt" value="${interestFields[1]}" scope="page" />
<c:set var="minAmt" value="${interestFields[0]}" scope="page" />
<c:set var="interestRate" value="${interestFields[2]}" scope="page" />
<div class="personalcal-${loop.index}" style="display:hidden;">
<div class="minamount-${loop.index}">
${interestFields[0]}
</div>
<div class= "maxamount-${loop.index}">
${interestFields[1]}
</div>
<div class= "intrate-${loop.index}">
${interestFields[2]}
</div>
</div>
</c:forEach>

</div>

我想获取jquery中的所有值我该怎么做?如果它不是动态生成的类或 ID,那么我可以通过 $(".class").text() 简单地获取它。但现在我的类正在随着循环而变化我怎样才能得到它?

最佳答案

put the below line in your jsp
<input type='hidden' value='${fn:length(interestParam)}' id="interestParamCount"/>

here is how to iterate in your js file

for(counter = 0 ; counter < $('#interestParamCount').val();counter++){
alert($('.minamount-'+counter).text());
alert($('minamount-'+counter).text());
alert($('intrate-'+counter).text());
}

关于java - 如何使用for循环从jsp获取jquery中的值?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19806192/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com