1
/* Apply the jEditable handlers to the table */

    var oTable = $("#scheduleRequestListTable").dataTable();
    $("td(:first-child, :empty)", oTable.fnGetNodes()).editable( 'editable_ajax.php', {
                "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]
                    };
                },
                type : 'text',              
                onblur: 'submit',
                "height": "100%",
                "width": "100%"
    } );

上面的代码给了我以下错误。

Uncaught Error: Syntax error, unrecognized expression: (:first-child, :empty) .

如果单元格为空(空或空白),我希望表格第一列可编辑。

我尝试了不同的选项但没有成功。

$("td:eq(0):empty").
$("td:empty:eq(0)")
4

1 回答 1

0

尝试:

$('td:empty:first-child')

选择器在行动 http://jsfiddle.net/HuntB/

于 2013-08-09T14:53:11.167 回答