HTML+CSS+JQuery實現下拉選單滑鼠懸浮顯示下拉選單,取消隱藏

hackers海嘉發表於2019-05-12

提示

檢查匯入JAR包沒

<!DOCTYPE html>
<html>
	<head>
		<meta charset="UTF-8">
		<title>下拉選單</title>
		<style>
			*{padding:0;margin:0;}
			ul,ol,li{list-style: none;}
			a{
				text-decoration:none;
				color:#1a66b3;
				font-size: 12px;
    			font-family: Arial, 微軟雅黑;
			}
			.on ul{display: none;}
			.on{
				width: 100px;
				border: 1px solid #e6e6e6;
				line-height: 20px;
				background:#fff;
			}
			a:hover{color:#ff2832;}
			.topDown li:hover{background:#f2f2f2;color:#000;}
			.xia{margin: 0px auto; width: 200px;}
			.top-m > li  a{padding:0 18px;}
			.top-m > li{line-height:22px;padding-top:5px;}

		</style>
	</head>
	<body>
		<div class="xia">
			<ul class="top-m">
				<li class="on">
				<a href="" class="menu-btn">我的當當</a>
					<ul class="topDown">
						<li><a href="">我的積分</a></li>
						<li><a href="">我的收藏</a></li>
						<li><a href="">我的餘額</a></li>
						<li><a href="">我的評論</a></li>
						<li><a href="">電子書架</a></li>
					</ul>
				</li>
			</ul>
		</div>
	<script src="js/jquery-1.12.4.js"></script>
	<script>
	$(document).ready(function(){
	     $(".on").hover(function(){
				$(".topDown").show();
			},
			function(){
				$(".topDown").hide();
			}
		);
	});
	</script>
	</body>
</html>

實現效果

在這裡插入圖片描述

相關文章