<style>
*{
color: blue
font-family: '楷体'
}
</style>
color表示字体颜色, font-family表示字体样式
$(document).ready(function(){var li=$("ul li")
li.onclick(function(){
$(this).addClass("blue").siblings().removeClass("blue")
})
})
.blue{background-color:blue}
这个是同页面的;不同页面也要如此效果的话,你只能每个页面的当前li设置底色,没得选。