编程学习网为您整理以下代码实例,主要实现:Bootstrap下拉菜单中标记部分,希望可以帮到各位朋友。
<!DOCTYPE HTML>
<HTML>
<head>
<Title>bootstrap Example</Title>
<link href = "/bootstrap/CSS/bootstrap.min.CSS" rel = "stylesheet">
<script src = "/scripts/jquery.min.Js"></script>
<script src = "/bootstrap/Js/bootstrap.min.Js"></script>
</head>
<body>
<div class = "dropdown">
<button type = "button" class = "btn dropdown-toggle" ID = "dropdownMenu1" data-toggle = "dropdown">
DIEt
<span class = "caret"></span>
</button>
<ul class = "dropdown-menu pull-right" role = "menu" aria-labelledby = "dropdownMenu1">
<li role = "presentation" class = "dropdown-header">vegetables</li>
<li role = "presentation">
<a role = "menuitem" tabindex = "-1" href = "#">Potato</a>
</li>
<li role = "presentation">
<a role = "menuitem" tabindex = "-1" href = "#">Tomato</a>
</li>
<li role = "presentation">
<a role = "menuitem" tabindex = "-1" href = "#">
brocolli
</a>
</li>
<li role = "presentation" class = "dropdown-header">Fruits</li>
<li role = "presentation">
<a role = "menuitem" tabindex = "-1" href = "#">
Apple
</a>
</li>
<li role = "presentation">
<a role = "menuitem" tabindex = "-1" href = "#">
Kiwi
</a>
</li>
</ul>
</div>
</body>
</HTML>
本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!