js代码
<script src="jquery-1.8.3.min.js"></script> <script src="mindmup-editabletable.js"></script> <script> $('#editable').editableTableWidget(); $('#editable td.uneditable').on('change', function(evt, newValue) { return false; }); $('#editable td').on('change', function(evt, newValue) { $.post( "script.php", { value: newValue }) .done(function( data ) { alert( "Data Loaded: " + data ); }); ; }); </script>