bootstrap前段开发页面怎样把table里的行数据选择到另一个form表单里,类似订单数量总金额?

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了bootstrap前段开发页面怎样把table里的行数据选择到另一个form表单里,类似订单数量总金额?相关的知识,希望对你有一定的参考价值。

参考技术A 河南新华电脑学院,专注互联网教育三十二年,到校参观报销路费 免费试听课程!!

html里的table怎样实现跨行和跨列

表格单元横跨两列的表格:
<table border="1">
<tr>
<th>Month</th>
<th>Savings</th>
</tr>
<tr>
<td colspan="2">January</td>
</tr>
<tr>
<td colspan="2">February</td>
</tr>
</table>

表格单元横跨两行的表格:
<table border="1">
<tr>
<th>Month</th>
<th>Savings</th>
</tr>
<tr>
<td>January</td>
<td>$100.00</td>
<td rowspan="2">$50</td>
</tr>
<tr>
<td>February</td>
<td>$10.00</td>
</tr>
</table>
参考技术A <td colspan=3>  跨行
<td rowspan=3>  跨列

以上是关于bootstrap前段开发页面怎样把table里的行数据选择到另一个form表单里,类似订单数量总金额?的主要内容,如果未能解决你的问题,请参考以下文章

bootstrap之栅格化

怎么把datatable里的第一行数据取出来呀

bootstrap table 怎么取到点击事件里的 index

怎样让bootstrap设计的页面在手机端也能响应式自适应

layui获取表格最后一行数据

小程序怎样把一个页面data里的变量同步到另外一个页面上去?