var li=$("ul li")
li.onclick(function(){
$(this).addClass("blue").siblings().removeClass("blue")
})
})
.blue{background-color:blue}
这个是同页面的;不同页面也要如此效果的话,你只能每个页面的当前li设置底色,没得选。
使用伪类改变颜色就可以了,点击前为蓝色,点击后为紫色,根据自己需要改变颜色就可以了。a{text-decoration: underline} /*链接无下划线none,有为underline*/
a:link {color: #00007ftext-decoration: underline} /*未访问的链接 */
a:visited {color: #65038etext-decoration: underline} /*已访问的链接*/
a:hover{color: #ff0000text-decoration: underline} /*鼠标在链接上 */
a:active {color: #ff0000text-decoration: underline} /*点击激活链接*/
如果一直都是蓝色不变,也可以直接
a{color:blue}