删除 on 时更改每个 div 的背景颜色
我有一个 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
jQuery 需要大量的选择器:
这是一个巨大的列表: http://api.jquery.com/category/selectors/ 。
jQuery takes tons selectors:
Here's a huge list: http://api.jquery.com/category/selectors/.
这行不通吗?
Would this not work?
如果我理解正确的话:
如果从中间删除其中一行,则可能需要重新运行循环以重置行的 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.
这是解决方案..终于找到了:-)
我发帖希望对其他人有用 - 非常感谢您的帮助!
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!