今天是来高博学习的第32天。
bootstrap下拉菜单,怎样让鼠标移入下拉菜单显示出来,移出时下拉菜单隐藏?
默认的bootstrap下拉列表为button的click操作。
改进后如下所示。
<!DOCTYPE html>
<html>
<head>
<title>Bootstrap 实例</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://cdn.staticfile.org/twitter-bootstrap/4.1.0/css/bootstrap.min.css">
</head>
<body>
<a class="dropdown-toggle" data-toggle="dropdown">
Dropdown button
</a>
<div class="dropdown-menu">
<a class="dropdown-item" href="#">Link 1</a>
<a class="dropdown-item" href="#">Link 2</a>
<a class="dropdown-item" href="#">Link 3</a>
</div>
<script src="https://cdn.staticfile.org/jquery/3.2.1/jquery.min.js"></script>
<script src="https://cdn.staticfile.org/popper.js/1.12.5/umd/popper.min.js"></script>
<script src="https://cdn.staticfile.org/twitter-bootstrap/4.1.0/js/bootstrap.min.js"></script>
<script>
$(document).ready(function () {
$(function () {
$(".dropdown-toggle").on("mouseover", function () {
$(this).dropdown('toggle');
})
$(".dropdown-toggle").on("mouseout", function () {
$(this).dropdown('toggle');
})
})
})
</script>
</body>
</html>
--------------------------------
鼠标移入a标签后列表下拉,鼠标移出后列表收回。