Bootstrap基本插件学习笔记之Popover提示框(19)

Tooltip采用的是hover方式弹出提示框(参见前一篇:Bootstrap学习总结笔记(18)– 基本插件之Tooltip提示工具),适合提示内容比较少的情况,要是内容较多,就可以应用Popover提示框。

<!DOCTYPE html> <html lang="zh-cn"> <head> <meta charset="UTF-8"> <meta content="width=device-width, initial-scale=1"> <link href=""> <script src="https://cdn.bootcss.com/jquery/1.11.1/jquery.min.js"></script> <script src=""></script> <title>Popover提示弹出框</title> </head> <body> <div> <div> <h1>Popover提示弹出框</h1> </div> <div> <button type="button" data-toggle="popover" data-placement="left" title="popover left" data-content="测试">左边的按钮</button> <button type="button" data-toggle="popover" data-placement="right" title="popover right" data-content="测试">左边的按钮</button> <button type="button" data-toggle="popover" data-placement="top" title="popover top" data-content="测试">左边的按钮</button> <button type="button" data-toggle="popover" data-placement="bottom" title="popover bottom" data-content="测试">左边的按钮</button> </div> </div> <script> $(function () { $("[data-toggle='popover']").popover(); }) </script> </body> </html>

效果如下:

Bootstrap基本插件学习笔记之Popover提示框(19)

如果大家还想深入学习,可以点击这里进行学习,再为大家附3个精彩的专题:

Bootstrap学习教程

Bootstrap实战教程

Bootstrap插件使用教程

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/wwfsws.html