<small id='4R4q9'></small><noframes id='4R4q9'>

    <legend id='4R4q9'><style id='4R4q9'><dir id='4R4q9'><q id='4R4q9'></q></dir></style></legend>

      1. <tfoot id='4R4q9'></tfoot>

          <bdo id='4R4q9'></bdo><ul id='4R4q9'></ul>
      2. <i id='4R4q9'><tr id='4R4q9'><dt id='4R4q9'><q id='4R4q9'><span id='4R4q9'><b id='4R4q9'><form id='4R4q9'><ins id='4R4q9'></ins><ul id='4R4q9'></ul><sub id='4R4q9'></sub></form><legend id='4R4q9'></legend><bdo id='4R4q9'><pre id='4R4q9'><center id='4R4q9'></center></pre></bdo></b><th id='4R4q9'></th></span></q></dt></tr></i><div id='4R4q9'><tfoot id='4R4q9'></tfoot><dl id='4R4q9'><fieldset id='4R4q9'></fieldset></dl></div>

        jQuery实现html下自动消失的提示框代码

        jQuery实现html下自动消失的提示框代码,具体代码如下: !DOCTYPE htmlhtmlhead meta charset="utf-8" titleBootstrap Example/title meta name="viewport" content="width=device-width, initial-scale=1" script src="https://cdn.staticfile.org/jquery/2.

        • <bdo id='Phd83'></bdo><ul id='Phd83'></ul>

            1. <small id='Phd83'></small><noframes id='Phd83'>

                  <tfoot id='Phd83'></tfoot><legend id='Phd83'><style id='Phd83'><dir id='Phd83'><q id='Phd83'></q></dir></style></legend>
                • <i id='Phd83'><tr id='Phd83'><dt id='Phd83'><q id='Phd83'><span id='Phd83'><b id='Phd83'><form id='Phd83'><ins id='Phd83'></ins><ul id='Phd83'></ul><sub id='Phd83'></sub></form><legend id='Phd83'></legend><bdo id='Phd83'><pre id='Phd83'><center id='Phd83'></center></pre></bdo></b><th id='Phd83'></th></span></q></dt></tr></i><div id='Phd83'><tfoot id='Phd83'></tfoot><dl id='Phd83'><fieldset id='Phd83'></fieldset></dl></div>
                    <tbody id='Phd83'></tbody>
                  jQuery实现html下自动消失的提示框代码,具体代码如下:
                  <!DOCTYPE html>
                  <html>
                  
                  <head>
                      <meta charset="utf-8">
                      <title>Bootstrap Example</title>
                      <meta name="viewport" content="width=device-width, initial-scale=1">
                      <script src="https://cdn.staticfile.org/jquery/2.1.1/jquery.min.js"></script>
                      <style>
                          .alert-prompt {
                              background: rgba(0, 0, 0, 0.8);
                              color: #fff;
                          }
                          .alert-success {
                              color: #3c763d;
                              background-color: #dff0d8;
                              border-color: #d6e9c6
                          }
                          .alert-info {
                              color: #31708f;
                              background-color: #d9edf7;
                              border-color: #bce8f1
                          }
                  
                          .alert-warning {
                              color: #8a6d3b;
                              background-color: #fcf8e3;
                              border-color: #faebcc
                          }
                  
                  
                          .alert-danger {
                              color: #a94442;
                              background-color: #f2dede;
                              border-color: #ebccd1
                          }
                  
                      </style>
                  </head>
                  
                  <body>
                  
                      <div class="container">
                          <h4>模拟数据查询,查询失败显示一个模态框,1.2秒后自动消失</h4>
                          <button type="button" class="btn" onclick="test('alert-danger')">查询失败</button>
                          <button type="button" class="btn" onclick="test('alert-success')">成功</button>
                          <button type="button" class="btn" onclick="test('alert_warning')">警告</button>
                          <button type="button" class="btn" onclick="test('alert_info')">信息提示</button>
                          <button type="button" class="btn" onclick="test('alert_info2')">信息提示2</button>
                      </div>
                      <script>
                          function test(str) {
                              switch (str) {
                                  case "alert-success": success_prompt("提交成功"); break;
                                  case "alert_warning": warning_prompt("错误警告"); break;
                                  case "alert-danger": fail_prompt("提交失败"); break;
                                  case "alert_info": info_prompt("未查询到数据"); break;
                                  default: alert_prompt("未查询到数据");
                              }
                  
                          }
                  
                          /**
                           * 弹出式提示框,默认1.2秒自动消失
                           * @param message 提示信息
                           * @param style 提示样式,有alert-success、alert-danger、alert-warning、alert-info
                           * @param time 消失时间
                           */
                          var prompt = function (message, style, time) {
                              style = (style === undefined) ? 'alert-success' : style;
                              time = (time === undefined) ? 1200 : time;
                              $('<div id="promptModal">')
                                  .appendTo('body')
                                  .addClass('alert ' + style)
                                  .css({
                                      "display": "block",
                                      "z-index": 99999,
                                      "left": ($(document.body).outerWidth(true) - 120) / 2,
                                      "top": ($(window).height() - 45) / 2,
                                      "position": "absolute",
                                      "padding": "20px",
                                      "border-radius": "5px"
                                  })
                                  .html(message)
                                  .show()
                                  .delay(time)
                                  .fadeOut(10, function () {
                                      $('#promptModal').remove();
                                  });
                          };
                  
                          // 成功提示
                          var success_prompt = function (message, time) {
                              prompt(message, 'alert-success', time);
                          };
                  
                          // 失败提示
                          var fail_prompt = function (message, time) {
                              prompt(message, 'alert-danger', time);
                          };
                  
                          // 提醒
                          var warning_prompt = function (message, time) {
                              prompt(message, 'alert-warning', time);
                          };
                  
                          // 信息提示
                          var info_prompt = function (message, time) {
                              prompt(message, 'alert-info', time);
                          };
                  
                          // 信息提示
                          var alert_prompt = function (message, time) {
                              prompt(message, 'alert-prompt', time);
                          };
                      </script>
                  </body>
                  
                  </html>
                  
                  这种方式在与window.location.reload() 同时使用时,会造成提示框提示短暂时间就会被页面刷新,这种情况可以使用setTimeout()方法,设置页面在一段时间后进行刷新。例如:
                  success_prompt("提交成功");
                  setTimeout("window.location.reload()",1200);
                   
                  本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

                  相关文档推荐

                  html点击按钮弹出页面获取值的实例代码 代码一: !DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"html xmlns="http://www.w3.org/1999/xhtml"headtitle/titlescript type="text/j
                  本文给大家介绍Javascript js中实现和PHP一样的时间戳格式化函数的方法,具有一定的参考借鉴价值,需要的朋友可以参考下,我们知道在php中有一个date()函数,可以方便的把时间戳格式化为时间字符串。可是在js中,我们要想实现这种效果,要写好多好多代码,非
                      • <bdo id='oUSxG'></bdo><ul id='oUSxG'></ul>
                          <tbody id='oUSxG'></tbody>

                        <small id='oUSxG'></small><noframes id='oUSxG'>

                        <tfoot id='oUSxG'></tfoot>

                          <i id='oUSxG'><tr id='oUSxG'><dt id='oUSxG'><q id='oUSxG'><span id='oUSxG'><b id='oUSxG'><form id='oUSxG'><ins id='oUSxG'></ins><ul id='oUSxG'></ul><sub id='oUSxG'></sub></form><legend id='oUSxG'></legend><bdo id='oUSxG'><pre id='oUSxG'><center id='oUSxG'></center></pre></bdo></b><th id='oUSxG'></th></span></q></dt></tr></i><div id='oUSxG'><tfoot id='oUSxG'></tfoot><dl id='oUSxG'><fieldset id='oUSxG'></fieldset></dl></div>
                          <legend id='oUSxG'><style id='oUSxG'><dir id='oUSxG'><q id='oUSxG'></q></dir></style></legend>