官方网站:http://mindmup.github.io/editable-table/
github下载地址:https://github.com/mindmup/editable-table
我的结构

简单测试html源码
<html lang="en"> <head> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"> <title>编辑</title> <meta name="description" content=""> <meta name="viewport" content="width=device-width; initial-scale=1.0"> </head> <body> <table id="table" border="1"> <tr> <td>fdsafdsafdasfds</td> </tr> </table> </body> </html> <script src="jquery-1.11.1.min.js"></script> <script src="editable-table-master/mindmup-editabletable.js"></script> <script src="editable-table-master/numeric-input-example.js"></script> <script type="text/javascript"> $(function () { $('#table').editableTableWidget({editor: $('<textarea>')}); }); </script>
可编辑表格插件使用指南
本文介绍了一个基于jQuery的可编辑表格插件的使用方法,包括如何在HTML中设置基本表格结构,引入必要的JS文件,并通过jQuery初始化插件使表格具备编辑功能。此插件适用于快速构建具有数据编辑能力的网页应用。

被折叠的 条评论
为什么被折叠?



