删除悬停样式?

发布于 2024-12-10 16:35:44 字数 345 浏览 0 评论 0原文

我有一个表和这样的样式:

.highlightrows tbody tr:hover {
  background-color: #aaaaff;
 }

然后我在该行上有一个单击处理程序,以从表中删除该行并将其添加到另一个表中。当我单击鼠标时,我当然将鼠标悬停在该行上,因此应用了样式。 我的问题是,当我将其附加到另一个表时,悬停样式不会被删除。如何删除 jQuery 中的样式?

编辑: 我做了一个 jsFiddle 来描述我的问题。 小提琴

I have a table and a style like this:

.highlightrows tbody tr:hover {
  background-color: #aaaaff;
 }

Then I have a click handler on this row to remove the row from the table and add it to another table. When I click on the mouse I'm of course hover over the row and therefor is the style applied.
My problem is that when I append it to the other table the hover-style is not removed. How can I remove the style in jQuery?

Edit:
I've made a jsFiddle to discribe my problem. fiddle

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

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

发布评论

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

评论(3

音盲 2024-12-17 16:35:44

你有两张桌子...为什么不这样做呢?

#table1.highlightrows tbody tr:hover {
  background-color: #aaaaff;
}

#table2.highlightrows tbody tr:hover {
  background: none;
}

you have two tables... why not do it this way??

#table1.highlightrows tbody tr:hover {
  background-color: #aaaaff;
}

#table2.highlightrows tbody tr:hover {
  background: none;
}
骷髅 2024-12-17 16:35:44

哈,这似乎是浏览器的一个错误,因为您不再将鼠标悬停在该元素上。

无论如何,您可以尝试

$(this).css("background-color", "transparent");

或以其他方式将其设置为其默认颜色,移动它之后。

:hover 不是一种样式,据我所知,您无法从元素中删除它 - 只有浏览器可以做到这一点。您唯一能做的就是在实际元素上强制使用默认样式

Ha, that seems to be a bug with the browser, as you are no longer hovered over the element.

Anyway, you could try

$(this).css("background-color", "transparent");

Or otherwise set it to its default color, after you move it.

:hover is not a style, and AFAIK you can't remove it from an element - only the browser can do that. The only thing you can do is force the default style on the actual element

旧城空念 2024-12-17 16:35:44

我刚刚遇到这个问题。

我的 CSS 中有一个 :hover 样式,在运行 java 脚本时我不希望 :hover 生效。我找不到删除该类的方法,因此我决定通过将带有新属性的新类附加到头部来覆盖该类。

CSS

.myStyle:hover {
    display: block; background: #efefef;
}

JavaScript

$("head").append("
    <style type='text/css'>
        .myStyle:hover { display: none; background: #ff0000; }
    </style>);

希望有帮助

I was just running into this issue.

I had a :hover style in my CSS and while running java script I didn't want :hover to be in effect. I couldn't find a way to remove the class so I decided to overwrite the class by appending a new class with my new attributes to the head.

CSS

.myStyle:hover {
    display: block; background: #efefef;
}

JavaScript

$("head").append("
    <style type='text/css'>
        .myStyle:hover { display: none; background: #ff0000; }
    </style>);

hope that helps

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