0

我有一个函数可以从选中复选框的 flexigrid 中获取单元格文本值。但我有一个问题。当我单击主复选框(不包含任何文本值,因为它与列标题一起显示)时,它会因为主复选框而出错。

这是我得到的错误:Uncaught Error: Syntax error, unrecognized expression: #

这是我从 Flexigrid 中获取事件日期的函数:

function getSelectedCopyDates() {
            var arr = new Array();
                //for every row that has a checked checkbox
                $("tr").has(".noteCheckBox:checked").each(function (i) {
                        //push the value of column(FName, LName) into the array 
                        arr.push($("#" + this.id + "> td[abbr='EventDate'] > div").text());
                    }
                });
            return arr;

    }

这是我的 flexigrid 的片段:

 $('#viewNotesGrid').flexigrid({
            url: url,
            dataType: 'json',
            method: 'get',
            colModel: [
                { display: '<input type="checkbox" class="noteCheckBox" id="checkAllNotes" />', name: 'checkBox', width: 20, sortable: false, align: 'center', process: showDescription },
                { display: 'File ID', name: 'FileID', width: 70, sortable: true, align: 'center', process: showDescription, hide: true },

这是它的样子: 在此处输入图像描述

4

1 回答 1

1

使用$("tr:has(:not('th'))")选择器选择没有主复选框行的 tr

      $("tr:has(:not('th'))").has(".noteCheckBox:checked").each(function (i) {
          if ($("tr").has(".checkAllNotes:checked")){
                    arr.push($("#" + this.id + "> td[abbr='EventDate'] > div").text());
                }
            });
于 2012-10-09T17:24:52.130 回答