我有一个表,其中填充了依赖于前一页的值,这些值显然是用 struts 填充的
但是我对所有这些东西都不是很好,所以有一个简单的方法是我可以做这样的事情,要么只用 HTML,要么我可以在页面中放入一个小的 javascript?
<Table>
<TR>
<TH>ID</TH>
<TD><s:property value="groupID" /><TD> <--Number generated by the page with struts
</TR>
<TR>
<TH>ID Value</TH>
<TD>foobar</TD> <-- the text I want to add in dependant on the number from the previous TD
</TH>
</Table>
那么,有没有一种简单的方法可以做到这一点?HTML、CSS、JavaScript 解决方案可能吗?