我来试试:亲们,来右侧代码编辑器亲自试试本小节表中的参数吧!
<!DOCTYPE HTML> <html> <head> <meta charset="utf-8"> <title>自定义结构属性</title> <link rel="stylesheet" href="http://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap.min.css"> <style> body{ padding: 10px; } </style> </head> <body> <button type="button" class="btn btn-default" data-toggle="popover" title="提示框居左" data-content="我是弹出框的内容"> 猛击我吧 </button> <script src="http://libs.baidu.com/jquery/1.9.0/jquery.js"></script> <script src="http://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/js/bootstrap.min.js"></script> <script> $(function(){ $('[data-toggle="popover"]').popover(); }); </script> </body> </html>