• bootstrap之消息提示


    <!DOCTYPE html>
    <html>
       <head>
          <title>Bootstrap</title>
          <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" charset="UTF-8" >
          <meta name="viewport" content="width=device-width, initial-scale=1.0">
          <link href="bootstrap/css/bootstrap.min.css" rel="stylesheet">
          <script src="bootstrap/js/jquery-1.11.1.min.js"></script>
          <script src="bootstrap/js/bootstrap.min.js"></script>
          <!--[if lt IE 9]>
             <script src="bootstrap/js/html5shiv.js"></script>
             <script src="bootstrap/js/respond.min.js"></script>
          <![endif]-->
          <style type="text/css">
              body{margin-top:80px;}
          </style>                 
          <script type="text/javascript">
              $(document).ready(function(){
                 $("button").eq(0).tooltip({
                    title:"标题",
                    placement:"bottom"
                 });
                 $("button").eq(3).click(function(){
                    $("button").eq(0).tooltip("show");
                 });
              });
          </script>
       </head>
        <body>
            <button class="btn btn-default">button</button>
            <button class="btn btn-default">button</button>
            <button class="btn btn-default">button</button>
            <button class="btn btn-default">button</button>
        </body>
    </html>

  • 相关阅读:
    ZZNU 1995: cots' times
    网站后缀名都有哪些
    webstorm运行到服务器(Apache)
    window系统下node.js环境配置
    window系统安装node.js
    网站创建自定义百度地图
    响应式一级到三级导航
    H5插入视频兼容各大浏览器
    phpStudy环境安装
    jquery on和bind
  • 原文地址:https://www.cnblogs.com/Oraice/p/5009383.html
Copyright © 2020-2023  润新知