gpt4 book ai didi

javascript - jQuery 使用变量在单击时更改背景颜色

转载 作者:行者123 更新时间:2023-11-29 10:41:31 25 4
gpt4 key购买 nike

场景

3 个导航项

<a href='#one'></a> <a href='#two'></a> <a href='#three'></a>

3 个部分

<section id='one'></section>
<section id='two'></section>
<section id='three'></section>...

使导航栏项目背景颜色=部分背景颜色

基本图形示例 http://i.stack.imgur.com/3VTBG.jpg

JSFiddle http://jsfiddle.net/kolorweb/r871bzz3/

我已经设法使用一个检索部分背景颜色的变量来实现动态颜色变化。

但是如何在单击另一个导航项时删除此背景色属性..

$('nav ul li a').click(function() {
$('nav ul li a').removeClass('active');
$(this).addClass('active');

// gets #''
var section_id = $(this).attr('href');

// this is the variable I want to apply to the relevant nav a on click.
var section_color = $(section_id).css('background-color');

// applying variable to the nav item that has been clicked
$(this).css('background-color', section_color);

// HOW DO I THEN REMOVE THIS PROPERTY WHEN ANOTHER NAV ITEM IS CLICKED?




});
nav ul li {
list-style: none;
display: inline;
}
nav a {
text-decoration: none;
padding: 10px 20px;
}
.active {
background-color: tomato;
}
#one {
width: 100vw;
height: 100px;
background-color: tomato;
}
#two {
width: 100vw;
height: 100px;
background-color: pink;
}
#three {
width: 100vw;
height: 100px;
background-color: steelblue;
}
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>

<nav>
<ul>
<li><a href="#one">one</a>
</li>
<li><a href="#two">two</a>
</li>
<li><a href="#three">three</a>
</li>
</ul>
</nav>

<section id="one">One</section>
<section id="two">Two</section>
<section id="three">Three</section>

最佳答案

在应用到事件的之后不要从其他中删除,但在之前从所有中删除:

$('nav ul li a').click(function() {
$('nav ul li a').removeClass('active');
$(this).addClass('active');

// gets #''
var section_id = $(this).attr('href');

// this is the variable I want to apply to the relevant nav a on click.
var section_color = $(section_id).css('background-color');

// remove from all
$('nav ul li a').css('background-color', '');

// applying variable to the nav item that has been clicked
$(this).css('background-color', section_color);

});

还有一个短链版本:

$('nav ul li a').click(function() {
$('nav ul li a').removeClass('active').css('background-color', '');
$(this).addClass('active').css('background-color', $($(this).attr('href')).css('background-color'));
});

关于javascript - jQuery 使用变量在单击时更改背景颜色,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28126918/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com