当 div 聚焦时更改 div 中元素的类?

发布于 2024-10-31 07:43:40 字数 177 浏览 1 评论 0原文

当父 div 获得焦点时,如何更改 div 内元素的类?

就像我活跃在

<div id="window" class="fenster"><a class="bye"></a></div>

A班时变成了你好?

How do change class of an element inside a div when the parent div is focused?

Like when I am active in the

<div id="window" class="fenster"><a class="bye"></a></div>

The class of A changes to hello?

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

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

发布评论

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

评论(2

泪眸﹌ 2024-11-07 07:43:40

假设“聚焦”是指鼠标悬停在其上并且可以使用 jQuery?

$('#window').mouseover(function() {
    $('a.bye', this).removeClass('bye').addClass('hello');
});

如果您想在鼠标移出时重置类:

$('#window').hover(function() {
    $('a.bye, a.hello', this).toggleClass('bye').toggleClass('hello');
});

JSFiddle 示例

仅使用 javascript 的 JSFiddle 示例

Assuming by focused you mean mouse is over it and you can use jQuery?

$('#window').mouseover(function() {
    $('a.bye', this).removeClass('bye').addClass('hello');
});

And if you want to reset the class when you move the mouse out:

$('#window').hover(function() {
    $('a.bye, a.hello', this).toggleClass('bye').toggleClass('hello');
});

JSFiddle Example

JSFiddle Example using only javascript

断肠人 2024-11-07 07:43:40

您可以在没有 jquery 的情况下执行此操作:

document.getElementById('window').setAttribute('class', 'newclassname');

You can do this without jquery:

document.getElementById('window').setAttribute('class', 'newclassname');

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