0

我想问一下我的 jquery 代码有什么问题导致它无法运行。我正在尝试使用 selectable 从该表中选择列并从每个 td 中获取信息

$(function() {
    $( "table" ).selectable({
        filter: ".tdItem"
        stop: function() {
            $( ".ui-selected", this ).each(
                function() {

                }
            );
        }
    });
});

});
4

2 回答 2

4

您在以下内容后缺少逗号:

filter: ".tdItem",

最后一个});(除非它连接到其他东西,否则会给你一个:Uncaught SyntaxError: Unexpected token }错误。

于 2012-09-25T18:42:14.673 回答
3

过滤器和停止之间没有逗号。还有一个额外的 }); 不确定这些是否只是复制粘贴错误。

$(function() {
    $("table").selectable({
        filter: ".tdItem",
        stop: function() {
            $( ".ui-selected", this ).each(
                function() {

                }
            );
        }
    });
});
于 2012-09-25T18:42:52.200 回答