data-toggle="popover"——使弹出框能够切换状态;
title——设置弹出框的标题;
data-content——设置弹出框的内容部分;
data-placement——设置弹出框的方位(top、left、right、bottom,默认为right);
data-trigger="focus"——设置焦点事件使用户点击空白处即能切换状态;
更多细节参考示例:
<!DOCTYPE html> <html lang="zh_CN"> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width,initial-scale=1"> <title>饭盒儿——发现身边不一样的世界</title> <link rel="stylesheet" href="css/bootstrap.min.css" type="text/css"> <script src="js/jquery-2.1.3.min.js"></script> <script src="js/bootstrap.min.js"></script> <!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries --> <!-- WARNING: Respond.js doesn't work if you view the page via file:// --> <!--[if lt IE 9]> <script src="//cdn.bootcss.com/html5shiv/3.7.2/html5shiv.min.js"></script> <script src="//cdn.bootcss.com/respond.js/1.4.2/respond.min.js"></script> <![endif]--> <style> </style> </head> <body> <div class="container"> <h3>popover.js示例</h3> <a href="#" type="button" class="btn btn-default js-popover" data-toggle="popover" title="广州恒大" data-content="唯一一支获得过亚冠冠军的中超俱乐部" data-placement="bottom" data-trigger="focus"> 支持广州恒大 </a> </div> <script> $(".js-popover").popover(); // $(".js-popover").popover("show"); </script> </body> </html>
版权声明:本文为博主原创文章,未经博主允许不得转载。
原文地址:http://blog.csdn.net/bboyjoe/article/details/47342969