我在我的网站上使用 Bootstrap v3.3.5 。 我想打开一个包含三个由水平线分隔的菜单项的弹出窗口。
菜单项应该是垂直的,应如下所示:
每个菜单项都应该是超链接,以打开一些新的模态对话框或类似的东西。 为此,我尝试了下面的代码,但它并没有为我做好准备。
<!DOCTYPE html>
<html lang="en">
<head>
<title>Bootstrap Example</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
<script src="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/js/bootstrap.min.js"></script>
</head>
<body>
<div class="container">
<a href="#" data-toggle="popover">Toggle popover</a>
</div>
<script>
$(document).ready(function(){
$('[data-toggle="popover"]').popover();
});
</script>
答案 0 :(得分:9)
这样的事情应该有用,这里是JsFiddle Example。
这里我使用了现有的Bootstrap
组件,列表组作为示例,但您可以将任何HTML
放入您的popover:
<!-- body content -->
<div class="container">
<div class="row">
<div class="col-xs-12">
<button type="button" class="btn btn-info" data-toggle="popover" title="Popover title">Toggle popover</button>
</div>
</div>
</div>
<!-- loaded popover content -->
<ul id="popover-content" class="list-group" style="display: none">
<a href="#" class="list-group-item">Edit Event</a>
<a href="#" class="list-group-item">Invite Members</a>
<a href="#" class="list-group-item">Delete Event</a>
</ul>
$(function() {
$('[data-toggle="popover"]').popover({
html: true,
content: function() {
return $('#popover-content').html();
}
});
});
一个非常有用的库,与Bootstrap
配合使用,可能会帮助您创建内联编辑等异步调用,X-Editable