选项卡下用jquery实现字体的三种状态,默认为黑色,鼠标放上去为红色,鼠标移走后为蓝色且其它选项字为黑
1个回答
展开全部
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title> Sigma's Test Page </title>
<meta name="Author" content="Sigma">
<meta name="Keywords" content="http://www.g8up.cn">
<meta name="Description" content="笃行天下">
<script src="http://libs.baidu.com/jquery/2.0.0/jquery.js"></script>
<style type="text/css">
ul{margin:0;padding:0;list-style-type: none;}
ul li{float:left;margin-left:3px;border:1px solid gray;}
</style>
</head>
<body>
<ul>
<li>list item 1</li>
<li>list item 2</li>
<li>list item 3</li>
<li>list item 4</li>
<li>list item 5</li>
</ul>
<script>
$('li').hover(function(){
$(this).css({ 'color':'red' }).siblings().css({ 'color':'black' });
},function(){
$(this).css({ 'color':'blue' });
});
</script>
</body>
</html>
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询