我textboxes
在页面中使用 for 循环创建JSP
。我的目标是根据条件设置focus
intotalAmt
textbox
或 first textbox
in 循环。
<% boolean defFocus=obj.getDefaultFocus(); %>
<input type="text" id="totalAmt" name="totalAmt" size="10" value="0">
<% for (int cnt1 = 0; cnt1 <10; cnt1++) { %>
<input type="text" id="settleAmt" name="settleAmt" size="10" value="0">
<% } %>
<script type="text/javascript">
<% if(defFocus) {%>
defaultFocus('totalAmt');
<% } else { %>
defaultFocus('settleAmt');
<% } %>
</script>