按钮点击显示引导警报 - 不允许但不要停留

时间:2018-04-05 22:59:00

标签: jquery twitter-bootstrap button alert

我想在点击“保存”按钮时显示提醒。然后警报将保持不变,直到我点击右上角的关闭(x)。

现在警报显示但仅持续1秒钟。我想保留警报。

在以下按钮中单击它将显示警告

<button  type='submit' id="submit"  name='submit'>Save Document</button>

我的提醒代码

  <div class="alert alert-warning alert-dismissible" role="alert">
    <button type="button" class="close" data-dismiss="alert" aria-label="Close"><span aria-hidden="true">&times;</span>
    </button>
    <strong>Warning!</strong> Better check yourself, you're not looking too good.
  </div>

这是我的Javascript。

$(document).ready(function() {
  $("button#submit").click(function() {
    $(".alert").show();
  });
});

这是我的Css

.alert{ display: none; }

1 个答案:

答案 0 :(得分:0)

我不认为这是警报消失的原生行为。看看您的网页上是否有针对“.alert”类的页面。