如何让 jquery 在类更改时做出反应
我有一个简单的带有 jquery 的选项卡导航。每当单击新选项卡时,脚本都会向当前导航列表元素添加“currentNav”类,并将其从先前选定的列表元素中删除。现在,每当第二个列表元素获得类“currentNav”时,我想更改母 ul 的背景。开始默认是第一个列表元素具有此类。我的问题是,我不知道如何让 jquery 对这个更改做出反应。
这是导航的 html
<ul id="AuktionenNav">
<li><a class="tabSelect one currentNav" href="#Tab0" rel="0">Auktionen starten</a></li>
<li><a class="tabSelect two" href="#Tab1" rel="1">Eingestellte Auktionen</a></li>
</ul>
到目前为止,我的 jquery
if($("ul#AuktionenNav li a.two").hasClass("currentNav")) {
$("ul#AuktionenNav").css("background-image", "url(../system/css/images/eingestellte_Auktionen.png)")
}
非常感谢您的帮助!谢谢!
I have a simple Tab Navigation with jquery. Whenever a new tab is clicked, the script adds to the current navigation list element the class "currentNav" and deletes it from the previous selected list element. Now I want to change the background of the mother ul whenever the second list element gets the class "currentNav". The start default is that the first list element has this class. My problem is, I don't know how I can make jquery react on that change..
Here is the html of the navigation
<ul id="AuktionenNav">
<li><a class="tabSelect one currentNav" href="#Tab0" rel="0">Auktionen starten</a></li>
<li><a class="tabSelect two" href="#Tab1" rel="1">Eingestellte Auktionen</a></li>
</ul>
And here my jquery so far
if($("ul#AuktionenNav li a.two").hasClass("currentNav")) {
$("ul#AuktionenNav").css("background-image", "url(../system/css/images/eingestellte_Auktionen.png)")
}
I appreciate any help! Thx!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
设置触发器和绑定:
我知道您的示例只有两个
标记,但这可以轻松扩展,同时保留第一个
Set a trigger and a bind:
I know your example only has two
<li>
tags, but this will scale easily while keeping the first<li>
the "resetter"一种方法是使用 DOM 突变事件:
JS Fiddle demo。
One way of doing this is to use the DOM mutation events:
JS Fiddle demo.
这里是一个演示
HERE IS A DEMO