关于struts标签的使用,本人标签用的不是很好,请指点下
<table border="1" align="center">
<tr> <td align="center">教材名称</td>
<td align="center">教材等级</td>
<td align="center">所属语种</td>
</tr>
<logic:present name="list">
<logic:iterate id="book" name="list">
<bean:define id="tbSpeak" name="book" property="tbSpeak"/>
<tr>
<td><html:multibox property="bookid" onclick="selectOne()">
<bean:write name="book" property="bookid"/>
</html:multibox><br></td>
<td><bean:write name="book" property="bookname"/></td>
<td><bean:write name="book" property="booklevel"/></td>
<td><bean:write name="tbSpeak" property="speakid"/></td>这里这个tbSpeak不用我说了吧,book表的一个外键的表,我这里想显示它的名字,不要显示ID,如何实现啊,有没高手标签用的好的指点下
</tr>
</logic:iterate>
</logic:present>
</table>