Document <script> <br> $(function(){ <br> var nav_1 = $(".nav_1 a"); <br> nav_1.click(function(){ <br> $(this).addClass("thisclass").siblings().removeClass("thisclass"); <br> }); <br> }); <br> </script>
- 主页
- 音乐
- 视频
🎜> ="#">Secondary column
">About
🎜> /ul>
My navigation focus clicks on other It will cause other backgrounds to change. The previous one will not disappear. When I need to click on music, the homepage disappears. When I click on a video, the music disappears. How to solve it???? Plan)
Someone please come! ! !
$(function(){
var nav_1 = $(".nav_1 a");
nav_1.click(function(){
$(this).closest("ul ").children("li").children("a").removeClass("thisclass");
$(this).addClass("thisclass");
});
}) ;
Statement:The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn