A股上市公司传智教育(股票代码 003032)旗下技术交流社区北京昌平校区

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

© 冷月 高级黑马   /  2013-10-29 21:02  /  708 人查看  /  0 人回复  /   0 人收藏 转载请遵从CC协议 禁止商业使用本文

大家好!我在前期做一个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>&nbsp;</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>
运行截图如下:

0 个回复

您需要登录后才可以回帖 登录 | 加入黑马