是否有任何插件可以帮助我在桌面上显示daa以及在运行时编辑它,这有助于自动添加新行,如ms访问表
答案 0 :(得分:0)
您是否尝试过来自https://github.com/warpech/jquery-handsontable
的handsontable.com源代码<script src="../lib/jquery.min.js"></script>
<script src="dist/jquery.handsontable.full.js"></script>
<link rel="stylesheet" media="screen" href="dist/jquery.handsontable.full.css">
<div id="dataTable"></div>
<script>
var data = [
["", "Kia", "Nissan", "Toyota", "Honda"],
["2008", 10, 11, 12, 13],
["2009", 20, 11, 14, 13],
["2010", 30, 15, 12, 13]
];
$("#dataTable").handsontable({
data: data,
startRows: 6,
startCols: 8
});
</script>