HTML:
first
js file:
<button class="btn btn-primary" data-toggle="modal" data-target="#modal-preview" onclick="return functionPrev();">Prev</button>
警报打开和引导模式也会打开,但我只希望警报显示并阻止模态窗口。
答案 0 :(得分:0)
{
email: 'email@email.com',
password: 'password
}
导致Bootstrap将click事件侦听器绑定到此按钮。 Bootstrap的事件处理程序打开模态。删除该数据属性应该会停止此行为。那么data-toggle="modal"
将是不必要的。