我想在html中创建一个包含2列和3行的表,但如果我们从其角落拖动鼠标,它应该调整大小。
答案 0 :(得分:2)
使用colResizable,jquery plugin to resize html tables and columns
示例html
<table id="sample">
<tr> <td>cell</td> <td>cell</td> <td>cell</td> </tr>
</table>
示例js:
$("#sample").colResizable({liveDrag:true});
答案 1 :(得分:0)