struts里可以照常写onClick,没有关系
比如<html:text name="xyz" onClick="xxxxxx()">要用循环的话
struts的logic标签库提供的游标,
还有JSTL也提供了c,可以充分利用EL语法配合if ,choose,when,forEach这些通用标签来生成
建议用JSTL,比如
<c:forEach begin="0" end="2" step="1" varStatus="i">
  <html:multibox property="cr_Schedule_Number" >${i.count}</html:multibox>
<c:forEach>
如果调用集合
<c:forEach items="${集合变量}" var="aaa" end="2">
  <html:multibox property="cr_Schedule_Number" >${aaa.name}</html:multibox>
</c:forEach>