<div class="codetitle"> <span><a style="CURSOR: pointer" data="55134" class="copybut" id="copybut55134" onclick="doCopy('code55134')"><u>复制代码</u></a></span> 代码如下:</div> <div class="codebody" id="code55134"> <br><script type="text/javascript" src="js/jquery.min.js"></script> <br><script type="text/javascript"> <BR>$(function(){ <BR>$("li").hover(function(){ <BR>$(this).addClass("ho"); <BR>}, <BR>function(){ <BR>$(this).removeClass("ho"); <BR>}); <BR>$("li").click(function(){ <BR>$(this).removeClass("ho").addClass("xiaoshi").siblings().removeClass("xiaoshi"); <BR>}); <BR>}) <BR></script> <br><style type="text/css"> <BR>li{background-color:#099; float:left; width:50px; height:25px; margin-left:1px; list-style:none;} <BR>.xiaoshi{background-color:#FF0;} <BR>.ho{background-color:#F00;} <BR></style> <br> <br> <br><div> <br><ul> <br><li>我第1</li> <br><li>我第2</li> <br><li>我第3</li> <br><li>我第4</li> <br><li>我第5</li> <br><li>我第6</li> <br> </ul> <br> </div> <br><br> </div>