我正在尝试在http://www.appelsiini.net/projects/jeditable上实现jquery datatables可编辑插件。我有:

<script language="javascript" type="text/javascript">
          $(document).ready(function() {
    /* Init DataTables */
    var oTable = $('#myDataTable').dataTable();

    /* Apply the jEditable handlers to the table */
    $('td', oTable.fnGetNodes()).editable( 'js/datatables/examples/examples_support/editable_ajax.php', {  # line 25
        "callback": function( sValue, y ) {
            var aPos = oTable.fnGetPosition( this );
            oTable.fnUpdate( sValue, aPos[0], aPos[1] );
        },
        "submitdata": function ( value, settings ) {
            return {
                "row_id": this.parentNode.getAttribute('id'),
                "column": oTable.fnGetPosition( this )[2]
            };
        },
        "height": "14px"
    } );
} );
        </script>


在chrome开发工具中,我看到:


  未捕获的TypeError:对象[object Object]没有方法“可编辑”


在第25行。如何解决此问题?

最佳答案

我认为问题是您的页面中没有包含库文件。

在页面中包含jquery.jeditable.js文件并检查

https://github.com/tuupola/jquery_jeditable

09-16 14:56