欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

li点击添加选中样式

程序员文章站 2022-07-14 22:54:43
...

li点击添加选中样式

<!DOCTYPE html>
<html>
	<head>
		<meta charset="UTF-8">
		<title>li选中</title>
		<style>
		    .selected{font-weight:bold; background: #17A2B8; color:#fff;}
		</style>
	</head>
	<body>
		<ul id="test">
		    <li>aaa</li>
		    <li>bbb</li>
		    <li>ccc</li>
		</ul>
	</body>
</html>
<script type="text/javascript" src="js/jquery.min.js" ></script>
<script type="text/javascript">
	$(function(){
	    $("#test li").click(function() {
	        $(this).siblings('li').removeClass('selected');  		// 删除其他兄弟元素的样式
	        $(this).addClass('selected');                            // 添加当前元素的样式
	    });
	}); 
</script>
相关标签: html js ul li