大家好!我在前期做一个ssh框架的系统时,遇到了jsp页面显示的问题,经过很久的努力,总算解决了,现将方法晒出。
原问题如图:
我想将产生的数据横向显示。
。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。
修改代码(body之间),问题即可解决。
<table>
<tr >
<struts:action name="selectBookBySort" executeResult="false" />
<struts:iterator value="#request['bookInfo']" id="bookInfo" status="st">
<struts:if test="#st.index % 4==0">
<tr>
</struts:if>
<td>
<table width="245" border="0">
<tr>
<td width="60" height="60" rowspan="3"><img src="/onLineBookStore/bookImages/<struts:property value='#bookInfo.picture'/>" width="60" /></td>
<td width="40"><font size="-1" color="#000000">书名:</font></td>
<td width="123"><FONT size="-1" face="宋体 " color="#000000"><struts:property value="#bookInfo.bookName"/></FONT></td>
</tr>
<tr>
<td><font size="-1" color="#000000">价格:</font></td>
<td><FONT size="-1" face="宋体 " color="#000000"><struts:property value="#bookInfo.price" /></FONT></td>
</tr>
<tr>
<td><font size="-1" color="#FF0000">折扣:</font></td>
<td><FONT size="-1" face="宋体 " color="#FF0000"><struts:property value="#bookInfo.discount" /></FONT></td>
</tr>
<tr>
<td><font size="-1" color="#000000">图书简介:</font></td>
<td colspan="2"><FONT size="-1" face="宋体 " color="#000000"><struts:property value="#bookInfo.discription" /></FONT></td>
</tr>
<tr>
<td><font size="-1" color="#000000">库存信息:</font></td>
<td><FONT size="-1" face="宋体 " color="#000000"><struts:property value="#bookInfo.inventory" />本</FONT></td>
<td> </td>
</tr>
<tr>
<td><font size="-1" color="#000000">我要购买:</font></td>
<td colspan="2"><form action="addCart.action" method="post">
<input type="text" name="count" size=4 value="1"/>
<input type="hidden" name="bookId" value="<struts:property value='#bookInfo.id' />" />
<input type="submit" value="购买"/>
</form></td>
</tr>
</table>
</td>
</struts:iterator>
</tr>
</table>
运行截图如下:
|
|