我想在 html 中创建一个有 2 列和 3 行的表格,但是如果我们从它的角落拖动鼠标,它应该调整大小。
问问题
6183 次
2 回答
2
使用 colResizable,一个jquery 插件来调整 html 表和列的大小
示例 html
<table id="sample">
<tr> <td>cell</td> <td>cell</td> <td>cell</td> </tr>
</table>
示例js:
$("#sample").colResizable({liveDrag:true});
于 2014-12-29T14:24:21.760 回答