弹出窗口内的表

时间:2016-02-15 09:56:22

标签: html jsp bootstrap-modal

我有以下代码样式来显示弹出表。我想表现出与模态相同的东西。

<div id="sDiv">
<table >
<thead>
<tr>
    <th id="tableTitle" colspan="2">Help<button id="tranClose" class="transBtnStyle">Close</button></th>
</tr>
  <tr>
    <th id="trans" class="header">  col1 <br> </th>
    <th id="transdesc" class="header">col2 <br> </th>
  </tr>
  </thead>
  <tbody>
  <s:iterator value="values" status="stat"> 
  <tr>
    <td><s:property value="val1"/></td>
    <td><s:property value="val2"/></td>
  </tr>
  </s:iterator>
  </tbody>
</table>
</div>

我怎样才能做到这一点?我使用bootstrap元素时是否可以使用struts标签(如果我选择它的话) 感谢

0 个答案:

没有答案