删除 on 时更改每个 div 的背景颜色

发布于 2024-10-22 02:17:48 字数 982 浏览 6 评论 0原文

我有一个 div 列表(div.row),我需要更新其背景颜色。目前,我正在通过 CSS 使用 div.row:nth-child(odd) 和 div.row:nth:child(even) 设置背景颜色。

通过单击删除 div.row - 然后它成功了,我需要它更新整行,这样它每秒仍然有不同的背景..

我该怎么做?

我的脚本现在是:

<script type="text/javascript">
$(document).ready( function() {
    $("a.delete").click(function(){
        $.ajax({
            type: "POST",
            url: "...",
            data: { this_page_id: $(this).prev().val() },
            success: function(){
                $(".success-delete").css("display","block");
            },
            async: false,
            dataType: "html"
        });
        $("#r" + $(this).prev().val()).slideUp();

        var i = 1
        $("div.row").each( function(index){
            if( i % 2 ){
                $(this).css('background-color','#ffffff');
            } else {
                $(this).css('background-color','#ececec');
            }

            i++;
        });
    });
});
</script>

I have a list of divs (div.row), which I need to update the background-color on. Currently I am via CSS setting the background color with div.row:nth-child(odd) and div.row:nth:child(even) ..

The div.row's is being removed via a click - and then it succeeds, I need it to update the entire row so it still has the different background on every second..

how can I do that?

My script is right now:

<script type="text/javascript">
$(document).ready( function() {
    $("a.delete").click(function(){
        $.ajax({
            type: "POST",
            url: "...",
            data: { this_page_id: $(this).prev().val() },
            success: function(){
                $(".success-delete").css("display","block");
            },
            async: false,
            dataType: "html"
        });
        $("#r" + $(this).prev().val()).slideUp();

        var i = 1
        $("div.row").each( function(index){
            if( i % 2 ){
                $(this).css('background-color','#ffffff');
            } else {
                $(this).css('background-color','#ececec');
            }

            i++;
        });
    });
});
</script>

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

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

发布评论

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

评论(4

无边思念无边月 2024-10-29 02:17:48

jQuery 需要大量的选择器:

$('div.row:even').css('background-color', 'white');
$('div.row:odd').css('background-color', '#ececec');

这是一个巨大的列表: http://api.jquery.com/category/selectors/

jQuery takes tons selectors:

$('div.row:even').css('background-color', 'white');
$('div.row:odd').css('background-color', '#ececec');

Here's a huge list: http://api.jquery.com/category/selectors/.

此生挚爱伱 2024-10-29 02:17:48

这行不通吗?

$(document).ready( function() {
    $("a.delete").click(function(){
        $.ajax({
            type: "POST",
            url: "...",
            data: { this_page_id: $(this).prev().val() },
            success: function(){
                $(".success-delete").css("display","block");
                doRows();
            },
            dataType: "html"
        });
        $("#r" + $(this).prev().val()).slideUp();

        function doRows() {
            $("div.row").each( function(index){
                if( index % 2 ){
                    $(this).css('background-color','#ffffff');
                } else {
                    $(this).css('background-color','#ececec');
                };
            });
        };

        doRows();
    });
});

Would this not work?

$(document).ready( function() {
    $("a.delete").click(function(){
        $.ajax({
            type: "POST",
            url: "...",
            data: { this_page_id: $(this).prev().val() },
            success: function(){
                $(".success-delete").css("display","block");
                doRows();
            },
            dataType: "html"
        });
        $("#r" + $(this).prev().val()).slideUp();

        function doRows() {
            $("div.row").each( function(index){
                if( index % 2 ){
                    $(this).css('background-color','#ffffff');
                } else {
                    $(this).css('background-color','#ececec');
                };
            });
        };

        doRows();
    });
});
盗梦空间 2024-10-29 02:17:48

如果我理解正确的话:
如果从中间删除其中一行,则可能需要重新运行循环以重置行的 BG 颜色。如果要删除的行位于底部,则无需执行任何操作。

行 BG 的重置将在处理行删除的单击事件处理程序中完成。

我还建议使用 css 类而不是直接样式。
您可以使用 .removeClass()、.addClass()

希望这会有所帮助。

If I understood it correctly:
If you delete one of the rows from middle, you might have to rerun the loop to reset the BG color of the rows. If the rows being deleted is at the bottom, no need to do anything.

This resetting of the row BG to be done in the click event handler where you handle row deletion.

I would also recommend using a css class instead of direct style.
You can use .removeClass(), .addClass()

Hope this helps.

长不大的小祸害 2024-10-29 02:17:48

这是解决方案..终于找到了:-)

我发帖希望对其他人有用 - 非常感谢您的帮助!

$(document).ready( function() {
    $("a.delete").click(function(){
        var id = $(this).prev().val();
        $.ajax({
            type: "POST",
            url: "/nsautolak.dk/admix/pages/delete/",
            data: { this_page_id: $(this).prev().val() },
            success: function(){
                $(".success-delete").css("display","block");
                $("#r" + id).removeClass("block").slideUp();

                $("div.block:odd").css('background-color','#ececec');
                $("div.block:even").css('background-color','#ffffff');
            },
            async: false,
            dataType: "html"
        });
    });
});

here is the solution.. Found out at last :-)

I am posting in hope that it can be useful to others - thank you very much for your help!

$(document).ready( function() {
    $("a.delete").click(function(){
        var id = $(this).prev().val();
        $.ajax({
            type: "POST",
            url: "/nsautolak.dk/admix/pages/delete/",
            data: { this_page_id: $(this).prev().val() },
            success: function(){
                $(".success-delete").css("display","block");
                $("#r" + id).removeClass("block").slideUp();

                $("div.block:odd").css('background-color','#ececec');
                $("div.block:even").css('background-color','#ffffff');
            },
            async: false,
            dataType: "html"
        });
    });
});
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文