编辑下面的代码:【加编码】
<html lang="en"> <head> <meta charset="utf-8"> <title>Bootstrap Popover Example</title> <meta name="description" content="This is an example to create Popover with Bootstrap."> <link href="/try/bootstrap/twitter-bootstrap-v2/docs/assets/css/bootstrap.css" rel="stylesheet"> </head> <body> <div class="container"> <h2>Example of creating Popover with Bootstrap</h2> <div class="well"> <a href="#" id="example" class="btn btn-success" rel="popover" data-content="It's so simple to create a tooltop for my website!" data-original-title="Bootstrap Popover">hover for popover</a> </div> </div> <script src="https://libs.baidu.com/jquery/1.7.1/jquery.min.js"></script> <script src="/try/bootstrap/twitter-bootstrap-v2/js/bootstrap-tooltip.js"></script> <script src="/try/bootstrap/twitter-bootstrap-v2/js/bootstrap-popover.js"></script> <script> $(function () { $("#example").popover(); }); </script> </body> </html>
结果: 【此窗口】 帮助?
Try it Yourself - © 自强学堂