仅当选择一行时才显示一些 html

发布于 2024-12-12 03:46:31 字数 661 浏览 0 评论 0原文

我正在使用 DataTables 并使用此代码突出显示所选行:

    /* Click event handler */
    $('#items-table tbody tr').live('click', function () {
        var id = this.id;
        var index = jQuery.inArray(id, aSelected);

        if ( index === -1 ) {
            aSelected.push( id );
        } else {
            aSelected.splice( index, 1 );
        }

        $(this).toggleClass('row_selected');
    } );

我想做的只是显示以下 html如果选择一行或多行:

<p>
<a href="javascript:void(0)" id="delete">Delete selected rows</a>           
</p>

我怎样才能实现这一目标?

I'm using DataTables and have this code to highlight the rows selected:

    /* Click event handler */
    $('#items-table tbody tr').live('click', function () {
        var id = this.id;
        var index = jQuery.inArray(id, aSelected);

        if ( index === -1 ) {
            aSelected.push( id );
        } else {
            aSelected.splice( index, 1 );
        }

        $(this).toggleClass('row_selected');
    } );

What I would like to do is only display the following html if one or more rows are selected:

<p>
<a href="javascript:void(0)" id="delete">Delete selected rows</a>           
</p>

How can I achieve this?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

长亭外,古道边 2024-12-19 03:46:31
if ($('#items-table tbody tr.row_selected').length > 0){
    $('#delete').show();
}
else {
    $('#delete').hide();
}
if ($('#items-table tbody tr.row_selected').length > 0){
    $('#delete').show();
}
else {
    $('#delete').hide();
}
热鲨 2024-12-19 03:46:31

你可以通过在toggleClass之后执行此操作来做到这一点

if($('#items-table tbody tr.row_selected').length > 0) {
    $("p").show();
else
    $("p").hide();

you can do that by doing this after the toggleClass

if($('#items-table tbody tr.row_selected').length > 0) {
    $("p").show();
else
    $("p").hide();
旧街凉风 2024-12-19 03:46:31

您可以创建一个函数,检查每次单击时选择了多少行。

例如:

function checkRows(){
    if( $('.row_selected').length > 0 ){
       $('#delete').show();
    }else{
       $('#delete').hide();
    }
}

然后将其放在删除按钮上:

$('#delete').click(function(){
    $('.row_selected').slideUp(200,function(){
        $(this).remove();
    });
    $(this).hide(); // Hide delete button again
});

希望有帮助:)

You could create a function that checks on every click how many rows are selected.

For example:

function checkRows(){
    if( $('.row_selected').length > 0 ){
       $('#delete').show();
    }else{
       $('#delete').hide();
    }
}

Then have this on the delete button:

$('#delete').click(function(){
    $('.row_selected').slideUp(200,function(){
        $(this).remove();
    });
    $(this).hide(); // Hide delete button again
});

Hope that helps :)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文