更改 div 的类,但不更改其中的跨度

发布于 2024-11-27 20:43:42 字数 420 浏览 0 评论 0原文

我有一个带有灰色边框的

,我将其用作按钮。

当我将鼠标悬停在边框上时,我使用 jQuery 将边框颜色更改为黑色(通过更改 mouseover 上的 css 类)。在

中还有一个带有我的按钮文本的

问题是,当我滚动文本时,它也会获取 css 类更改信息,然后我的文本有一个黑色边框。

我想知道是否有一种方法可以让 javascript 或 jQuery 忽略 文本并将其视为不存在。

我只想改变按钮的边框颜色,而不是为我的文本添加边框。

任何帮助表示赞赏!

I have a <div> with a grey border that I am using as a button.

I am using jQuery to change the border color to black when I roll over it (by changing the css class on mouseover). In the <div> there is also a <span> with my button text.

The trouble is when I roll over the text that picks up the css class change info too and my text then has a black border.

I want to know if there is a way for javascript or jQuery to ignore the <span> text and treat it as if it were not there.

I just want the border color of the button to change, not add a border to my text too.

Any help appreciated!

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

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

发布评论

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

评论(2

好听的两个字的网名 2024-12-04 20:43:42

当您应用新样式时,您的选择器似乎是错误的,并且也包含了跨度的内容。

但对于鼠标悬停事件的所有外观更改,请使用 CSS 方式:)
干净很多。

.myClass
{
  // css of the button
}
.myClass:hover
{
  // css of the button when mouse over it.
}

It seems like your selector when you apply the new style is wrong and includes the content of the span too.

But for all the cosmetics change of the mouse over event please use the css way :)
Lot cleaner.

.myClass
{
  // css of the button
}
.myClass:hover
{
  // css of the button when mouse over it.
}
初见 2024-12-04 20:43:42

正如@Jean-Philippe所说,jQuery对此不是必需的,CSS包含当您将鼠标悬停在元素上时更改元素的外观所需的所有功能。

它也可以用 jQuery 来完成,但我不明白问题是什么。

这个 jsfiddle 演示了两种方法,都没有在内部跨度上放置边框

As @Jean-Philippe said, jQuery is not necessary for this, css contains all the functionality you need to change th elook of an element when you're hovering over it.

It can also be done with jQuery but I fail to see what the problem would be.

This jsfiddle demonstrates both methods, neither put a border on the internal span

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