我使用下面的代码隐藏模式“signin”隐藏该模式后将显示“changepassword”模式。但是下面的代码只在IE中引发了一个问题“对象不支持bootstrap.js中的属性或方法'preventDefault'”。
代码:
$('#signin').modal('hide');
$('.modal-backdrop').remove();
$('#ChangePassword').modal('show');
Bootstrap.js
Modal.prototype.hide = function (e) {
if (e) e.preventDefault();
e = $.Event('hide.bs.modal')
this.$element.trigger(e)
if (!this.isShown || e.isDefaultPrevented()) return
this.isShown = false
this.escape()