<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Document</title>
<link href="https://cdn.bootcss.com/twitter-bootstrap/3.3.7/css/bootstrap.css" rel="stylesheet">
<script src="https://cdn.bootcss.com/jquery/3.3.1/jquery.js"></script>
<script src="https://cdn.bootcss.com/twitter-bootstrap/3.3.7/js/bootstrap.js"></script>
</head>
<style>
</style>
<body>
<div class="container" style="padding: 200px;">
<button class="btn btn-primary" data-container="body" data-toggle="popover" data-placement="bottom" data-content="弹出框内容">弹出框</button>
</div>
<script>
$(function() {
$("[data-toggle='popover']").popover();
} )
</script>
</body>
</html>