2

我对 jQuery 很陌生,在完成我想要的表的特定功能时遇到了一些麻烦。

我有一个动态排序的数据库列表,我希望能够在单击列标题时创建一个包含来自特定列的文本的文本区域。我从这个http://jsfiddle.net/4BwGG/3/使用的代码中有一些功能,但这里有一些我无法弄清楚的事情:

我使用标签中style="display: none"的属性隐藏了表中的一些行<tr>,当脚本解析所有内容时,这些隐藏行的信息也被包含在内。如何进行检查以便仅将显示的行复制到文本区域?

这是一行条目的样子:

<tr filtermatch="false" style="display: none;">
  <td>< a href="http://example.edu">Tommy Trojan< /a>< /td>   
  < td>123-555-1231< /td>
  < td>Statue Man< /td>
  < td>[LTS1] [LTS2] [PM] [PM2] [TA1] [TA2] < /td>
  < td>tommy@example.edu< /td>
< /tr>` 

这是功能:

function SelectColumn(index, tableId) {
    var columnText = 'You selected:\n\n';
    var columnSelector = '#' + tableId + ' tbody > tr > td:nth-child(' + (index + 1) + ')';
    var cells = $(columnSelector);

    // clear existing selections
    if (window.getSelection) { // all browsers, except IE before version 9
        window.getSelection().removeAllRanges();
    }


    if (document.createRange) {
        cells.each(function(i, cell) {
            var rangeObj = document.createRange();
            rangeObj.selectNodeContents(cell);
            window.getSelection().addRange(rangeObj);
            columnText = columnText + '\n' + rangeObj.toString();
        });
    }
    else { // Internet Explorer before version 9
        cells.each(function(i, cell) {
            var rangeObj = document.body.createTextRange();
            rangeObj.moveToElementText(cell);
            rangeObj.select();
            columnText = columnText + '\n' + rangeObj.toString();
        });
    }

    alert(columnText);
}
4

2 回答 2

0

如果您使用的是 jquery,它将使事情变得非常容易。要仅选择可见元素,您可以在 jquery 中使用 :visible。

$(document).ready(function(){
    var textAreaContent=[];
    $('tr:visible').each(function(){
        var content=$('<div />').append($(this).clone()).html();
        textAreaContent.push(content);
    });
    $('.textarea').val(textAreaContent.join(''));
});

检查 jsfiddle http://jsfiddle.net/sudhanshu414/9YeLm/

选择的其他选项是使用过滤器。如果您想根据其他条件进行过滤,这也很有用。

$(document).ready(function(){
    var textAreaContent=[]; 
    $('tr').filter(function(){ return $(this).css('display')!='none';}).each(function(){
        var content=$('<div />').append($(this).clone()).html();
        textAreaContent.push(content);
    });
    $('.textarea').val(textAreaContent.join(''));
});

jsfiddle:http: //jsfiddle.net/sudhanshu414/3GfqN/

于 2012-12-31T09:01:45.913 回答
0

尝试将代码包装在检查tr.

例如:

if (document.createRange) {
    cells.each(function(i, cell) {
        if ($(cell).closest('tr').is(':visible')) {
            var rangeObj = document.createRange();
            rangeObj.selectNodeContents(cell);
            window.getSelection().addRange(rangeObj);
            columnText = columnText + '\n' + rangeObj.toString();
        }
    });
}

当然,你也想在 else 块中做同样的事情。但作为记录,该 jsFiddle 在 IE7 中对我不起作用(它会引发有关不支持的属性或方法的错误)。

我知道您没有问,但除非您需要实际选择该列,否则我会重构代码。如果您希望该列显示为选中状态,我可能会添加一些 CSS。

其他人可能会进一步改进代码。但这是我的建议。我添加了评论来解释我做了什么以及为什么。

function SelectColumn(index, tableId) {
    // cache the table selector in a local variable
    // because we are going to use it more than once
    var columnText = 'You selected:\n\n',
        table = $('#' + tableId),
        cells = table.find('td:nth-child(' + (index + 1) + ')');

    // reset the background color of all cells
    table.find('td').css('background-color', '#fff');

    cells.each(function(i, cell) {
        // turn cell into a jQuery object and cache it
        // because we are going to use it more than once
        cell = $(cell);

        if (cell.closest('tr').is(':visible')) {
            // get the cell text and trim it
            // because different browsers treat newlines differently
            columnText += $.trim(cell.text()) + '\n';

            // set a background color on the selected cells
            cell.css('background-color', '#ccc');
        }
    });

    alert(columnText);
}
于 2012-12-31T08:38:35.267 回答